Click or drag to resize

RankedDictionaryTKey, TValueValueCollectionSkipWhile Method (FuncTValue, Int32, Boolean)

Bypasses values as long as a supplied index-based condition is true and yields the remaining values.

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

Parameters

predicate
Type: SystemFuncTValue, Int32, Boolean
The condition to test for.

Return Value

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