Click or drag to resize

RankedDictionaryTKey, TValueSkipWhile Method (FuncKeyValuePairTKey, TValue, Boolean)

Bypasses elements as long as a supplied condition is true and yields the remaining elements.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public RankedDictionaryTKey, TValueEnumerator SkipWhile(
	Func<KeyValuePair<TKey, TValue>, bool> predicate
)

Parameters

predicate
Type: SystemFuncKeyValuePairTKey, TValue, Boolean
The condition to test for.

Return Value

Type: RankedDictionaryTKey, TValueEnumerator
Remaining elements after the first element that does not satisfy the supplied condition.
Exceptions
ExceptionCondition
InvalidOperationExceptionWhen the dictionary was modified after the enumerator was created.
See Also