Lean
$LEAN_TAG$
|
Provides convenience of linq extension methods for IEnumerator<T> types More...
Static Public Member Functions | |
static IEnumerator< T > | Where< T > (this IEnumerator< T > enumerator, Func< T, bool > predicate) |
Filter the enumerator using the specified predicate More... | |
static IEnumerator< TResult > | Select< T, TResult > (this IEnumerator< T > enumerator, Func< T, TResult > selector) |
Project the enumerator using the specified selector More... | |
static IEnumerator< TResult > | SelectMany< T, TResult > (this IEnumerator< T > enumerator, Func< T, IEnumerator< TResult >> selector) |
Project the enumerator using the specified selector More... | |
Provides convenience of linq extension methods for IEnumerator<T> types
Definition at line 24 of file EnumeratorExtensions.cs.
|
static |
Filter the enumerator using the specified predicate
Definition at line 29 of file EnumeratorExtensions.cs.
|
static |
Project the enumerator using the specified selector
Definition at line 46 of file EnumeratorExtensions.cs.
|
static |
Project the enumerator using the specified selector
Definition at line 60 of file EnumeratorExtensions.cs.