BcfReadOnlyArrayListExtensions Class |
[This is preliminary documentation and is subject to change.]
Namespace: System.Linq
The BcfReadOnlyArrayListExtensions type exposes the following members.
| Name | Description | |
|---|---|---|
| AggregateTSource(BcfReadOnlyArrayListTSource, FuncTSource, TSource, TSource) |
Applies an accumulator function over a sequence.
| |
| AggregateTAccumulate, TSource(BcfReadOnlyArrayListTSource, TAccumulate, FuncTAccumulate, TSource, TAccumulate) |
Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value.
| |
| AggregateTSource, TAccumulate, TResult(BcfReadOnlyArrayListTSource, TAccumulate, FuncTAccumulate, TSource, TAccumulate, FuncTAccumulate, TResult) |
Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value, and the specified function is used to select the result value.
| |
| AllTSource |
Gets a value indicating whether all elements in this collection
match a given condition.
| |
| AnyTSource(BcfReadOnlyArrayListTSource) |
Gets a value indicating whether any elements are in this collection.
| |
| AnyTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean) |
Gets a value indicating whether any elements are in this collection
that match a given condition.
| |
| ElementAtTSource |
Returns the element at a specified index in a sequence.
| |
| ElementAtOrDefaultTSource |
Returns the element at a specified index in a sequence or a default value if the index is out of range.
| |
| FirstTSource(BcfReadOnlyArrayListTSource) |
Returns the first element in a sequence that satisfies a specified condition.
| |
| FirstTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean) |
Returns the first element in a sequence that satisfies a specified condition.
| |
| FirstOrDefaultTSource(BcfReadOnlyArrayListTSource) |
Returns the first element of a sequence, or a default value if the sequence contains no elements.
| |
| FirstOrDefaultTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean) |
Returns the first element of the sequence that satisfies a condition or a default value if no such element is found.
| |
| LastTSource(BcfReadOnlyArrayListTSource) |
Returns the last element of a sequence.
| |
| LastTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean) |
Returns the last element of a sequence that satisfies a specified condition.
| |
| LastOrDefaultTSource(BcfReadOnlyArrayListTSource) |
Returns the last element of a sequence, or a default value if the sequence contains no elements.
| |
| LastOrDefaultTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean) |
Returns the last element of a sequence that satisfies a condition or a default value if no such element is found.
| |
| ReverseTSource |
Inverts the order of the elements in a sequence.
| |
| SelectTSource, TResult |
Projects each element of a sequence into a new form.
| |
| SelectManyTSource, TResult(IEnumerableTSource, FuncTSource, BcfReadOnlyArrayListTResult) |
Projects each element of a sequence to an IEnumerableT,
flattens the resulting sequences into one sequence.
| |
| SelectManyTSource, TCollection, TResult(IEnumerableTSource, FuncTSource, BcfReadOnlyArrayListTCollection, FuncTSource, TCollection, TResult) |
Projects each element of a sequence to an IEnumerableT,
flattens the resulting sequences into one sequence, and invokes a result
selector function on each element therein.
| |
| SequenceEqualTDerived, TBase(BcfReadOnlyArrayListTBase, BcfReadOnlyArrayListTDerived, IEqualityComparerTBase) |
Determines whether two sequences are equal according to an equality comparer.
| |
| SequenceEqualTDerived, TBase(BcfReadOnlyArrayListTBase, BcfReadOnlyArrayListTDerived, FuncTBase, TBase, Boolean) |
Determines whether two sequences are equal according to an equality comparer.
| |
| SequenceEqualTDerived, TBase(BcfReadOnlyArrayListTBase, IEnumerableTDerived, IEqualityComparerTBase) |
Determines whether two sequences are equal according to an equality comparer.
| |
| SingleTSource(BcfReadOnlyArrayListTSource) |
Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.
| |
| SingleTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean) |
Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.
| |
| SingleOrDefaultTSource(BcfReadOnlyArrayListTSource) |
Returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence.
| |
| SingleOrDefaultTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean) |
Returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition.
| |
| ToArrayTSource |
Copies the contents of this array to a mutable array.
| |
| ToDictionaryTSource, TKey(BcfReadOnlyArrayListTSource, FuncTSource, TKey) |
Creates a dictionary based on the contents of this array.
| |
| ToDictionaryTSource, TKey(BcfReadOnlyArrayListTSource, FuncTSource, TKey, IEqualityComparerTKey) |
Creates a dictionary based on the contents of this array.
| |
| ToDictionaryTSource, TKey, TElement(BcfReadOnlyArrayListTSource, FuncTSource, TKey, FuncTSource, TElement) |
Creates a dictionary based on the contents of this array.
| |
| ToDictionaryTSource, TKey, TElement(BcfReadOnlyArrayListTSource, FuncTSource, TKey, FuncTSource, TElement, IEqualityComparerTKey) |
Creates a dictionary based on the contents of this array.
| |
| WhereTSource |
Filters a sequence of values based on a predicate.
|