Sequence SkipWhile Method A Sandcastle Documented Class Library
Overload List
  NameDescription
Public methodStatic memberSkipWhile TSource (ISequence TSource , Func TSource, Boolean )
Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. If the source sequence represents an infinite set or series and all elements satisfy the given condition, this will never return!
Public methodStatic memberSkipWhile TSource (ISequence TSource , Func TSource, Int32, Boolean )
Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. The element's index is used in the logic of the predicate function. If the source sequence represents an infinite set or series and all elements satisfy the given condition, this will never return!
Top
See Also