Click or drag to resize

RankedSetTSkipWhile Method (FuncT, Boolean)

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

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

Parameters

predicate
Type: SystemFuncT, Boolean
The condition to test for.

Return Value

Type: RankedSetTEnumerator
Remaining items after the first item that does not satisfy the supplied condition.
Exceptions
ExceptionCondition
InvalidOperationExceptionWhen the set was modified after the enumerator was created.
See Also