Returns elements from a sequence as long as a specified condition is true.
The element's index is used in the logic of the predicate function.
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax public static ISequence<TSource> TakeWhile<TSource>(
this ISequence<TSource> source,
Func<TSource, int, bool> predicate
)
public static ISequence<TSource> TakeWhile<TSource>(
this ISequence<TSource> source,
Func<TSource, int, bool> predicate
)
<ExtensionAttribute>
Public Shared Function TakeWhile(Of TSource) (
source As ISequence(Of TSource),
predicate As Func(Of TSource, Integer, Boolean)
) As ISequence(Of TSource)
<ExtensionAttribute>
Public Shared Function TakeWhile(Of TSource) (
source As ISequence(Of TSource),
predicate As Func(Of TSource, Integer, Boolean)
) As ISequence(Of TSource)
public:
[ExtensionAttribute]
generic<typename TSource>
static ISequence<TSource>^ TakeWhile(
ISequence<TSource>^ source,
Func<TSource, int, bool>^ predicate
)
public:
[ExtensionAttribute]
generic<typename TSource>
static ISequence<TSource>^ TakeWhile(
ISequence<TSource>^ source,
Func<TSource, int, bool>^ predicate
)
static member TakeWhile :
source : ISequence<'TSource> *
predicate : Func<'TSource, int, bool> -> ISequence<'TSource>
static member TakeWhile :
source : ISequence<'TSource> *
predicate : Func<'TSource, int, bool> -> ISequence<'TSource>
Parameters
- source
- Type: Sequences ISequence TSource
The sequence to return elements from.
- predicate
- Type: System Func TSource, Int32, Boolean
A function to test each element for a condition; the second parameter of the function represents the index of the element.
Type Parameters - TSource
- The type of the elements of source.
Return Value
Type:
ISequence TSource A sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
ISequence TSource . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also