|
Name |
Description |
|
AsIndexed<(Of <<'(T>)>>)
|
|
|
GroupBy<(Of <<'(TSource, TKey>)>>)(IIndexedSource<(Of <<'(TSource>)>>), Expression<(Of <<'(Func<(Of <<'(TSource, TKey>)>>)>)>>))
|
Groups the elements of a collection according to a specified key selector function.
|
|
GroupBy<(Of <<'(TSource, TKey, TElement>)>>)(IIndexedSource<(Of <<'(TSource>)>>), Expression<(Of <<'(Func<(Of <<'(TSource, TKey>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TSource, TElement>)>>)>)>>))
|
Groups the elements of a collection according to a specified key selector function and projects the elements for each group by using a specified function.
|
|
GroupBy<(Of <<'(TSource, TKey, TResult>)>>)(IIndexedSource<(Of <<'(TSource>)>>), Expression<(Of <<'(Func<(Of <<'(TSource, TKey>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TKey, IEnumerable<(Of <<'(TSource>)>>), TResult>)>>)>)>>))
|
Groups the elements of a collection according to a specified key selector function and creates a result value from each group and its key.
|
|
GroupBy<(Of <<'(TSource, TKey, TElement, TResult>)>>)(IIndexedSource<(Of <<'(TSource>)>>), Expression<(Of <<'(Func<(Of <<'(TSource, TKey>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TSource, TElement>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TKey, IEnumerable<(Of <<'(TElement>)>>), TResult>)>>)>)>>))
|
Groups the elements of a collection according to a specified key selector function and creates a result value
from each group and its key. The elements of each group are projected by using a specified function.
|
|
GroupJoin<(Of <<'(TOuter, TInner, TKey, TResult>)>>)
|
Correlates the elements of two collections based on equality of keys and groups the results.
|
|
Join<(Of <<'(TOuter, TInner, TKey, TResult>)>>)(IEnumerable<(Of <<'(TOuter>)>>), IIndexedSource<(Of <<'(TInner>)>>), Expression<(Of <<'(Func<(Of <<'(TOuter, TKey>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TInner, TKey>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TOuter, TInner, TResult>)>>)>)>>))
|
Correlates the elements of two collections based on matching keys.
|
|
Join<(Of <<'(TOuter, TInner, TKey, TResult>)>>)(IIndexedSource<(Of <<'(TOuter>)>>), IIndexedSource<(Of <<'(TInner>)>>), Expression<(Of <<'(Func<(Of <<'(TOuter, TKey>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TInner, TKey>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TOuter, TInner, TResult>)>>)>)>>))
|
Correlates the elements of two collections based on matching keys.
|
|
Join<(Of <<'(TOuter, TInner, TKey, TResult>)>>)(IIndexedSource<(Of <<'(TOuter>)>>), IEnumerable<(Of <<'(TInner>)>>), Expression<(Of <<'(Func<(Of <<'(TOuter, TKey>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TInner, TKey>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TOuter, TInner, TResult>)>>)>)>>))
|
Correlates the elements of two collections based on matching keys.
|
|
OrderBy<(Of <<'(T, TKey>)>>)
|
Sorts the elements of a collection in ascending order.
|
|
OrderByDescending<(Of <<'(T, TKey>)>>)
|
Sorts the elements of a collection in descending order.
|
|
Select<(Of <<'(TSource, TResult>)>>)
|
Projects each element of a collection into a new form.
|
|
SelectMany<(Of <<'(TSource, TResult>)>>)(IIndexedSource<(Of <<'(TSource>)>>), Expression<(Of <<'(Func<(Of <<'(TSource, IEnumerable<(Of <<'(TResult>)>>)>)>>)>)>>))
|
Projects each element of a collection to a sequence of collections and flattens the resulting collections into one collection.
|
|
SelectMany<(Of <<'(TSource, TCollection, TResult>)>>)(IIndexedSource<(Of <<'(TSource>)>>), Expression<(Of <<'(Func<(Of <<'(TSource, IEnumerable<(Of <<'(TCollection>)>>)>)>>)>)>>), Expression<(Of <<'(Func<(Of <<'(TSource, TCollection, TResult>)>>)>)>>))
|
Projects each element of a collection to a sequence of collections, flattens the resulting collections into one collection,
and invokes a result selector function on each element therein.
|
|
ToIndexed<(Of <<'(T>)>>)(BindingList<(Of <<'(T>)>>))
|
|
|
ToIndexed<(Of <<'(T>)>>)(IBindingList)
|
|
|
ToIndexed<(Of <<'(T>)>>)(IObservableSource<(Of <<'(T>)>>))
|
|
|
Where<(Of <<'(T>)>>)(IIndexedSource<(Of <<'(T>)>>), Expression<(Of <<'(Func<(Of <<'(T, Boolean>)>>)>)>>))
|
Filters the source collection based on a predicate.
|
|
Where<(Of <<'(T>)>>)(IIndexedSource<(Of <<'(T>)>>), Expression<(Of <<'(Func<(Of <<'(T, Boolean>)>>)>)>>), Boolean)
|
Filters the source collection based on a predicate, preserving the order of the source collection.
|