Click or drag to resize

BcfReadOnlyArrayListExtensions Class

[This is preliminary documentation and is subject to change.]

Inheritance Hierarchy
SystemObject
  System.LinqBcfReadOnlyArrayListExtensions

Namespace:  System.Linq
Assembly:  CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.0.0-beta7
Syntax
public static class BcfReadOnlyArrayListExtensions

The BcfReadOnlyArrayListExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAggregateTSource(BcfReadOnlyArrayListTSource, FuncTSource, TSource, TSource)
Applies an accumulator function over a sequence.
Public methodStatic memberAggregateTAccumulate, TSource(BcfReadOnlyArrayListTSource, TAccumulate, FuncTAccumulate, TSource, TAccumulate)
Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value.
Public methodStatic memberAggregateTSource, 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.
Public methodStatic memberAllTSource
Gets a value indicating whether all elements in this collection match a given condition.
Public methodStatic memberAnyTSource(BcfReadOnlyArrayListTSource)
Gets a value indicating whether any elements are in this collection.
Public methodStatic memberAnyTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean)
Gets a value indicating whether any elements are in this collection that match a given condition.
Public methodStatic memberElementAtTSource
Returns the element at a specified index in a sequence.
Public methodStatic memberElementAtOrDefaultTSource
Returns the element at a specified index in a sequence or a default value if the index is out of range.
Public methodStatic memberFirstTSource(BcfReadOnlyArrayListTSource)
Returns the first element in a sequence that satisfies a specified condition.
Public methodStatic memberFirstTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean)
Returns the first element in a sequence that satisfies a specified condition.
Public methodStatic memberFirstOrDefaultTSource(BcfReadOnlyArrayListTSource)
Returns the first element of a sequence, or a default value if the sequence contains no elements.
Public methodStatic memberFirstOrDefaultTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean)
Returns the first element of the sequence that satisfies a condition or a default value if no such element is found.
Public methodStatic memberLastTSource(BcfReadOnlyArrayListTSource)
Returns the last element of a sequence.
Public methodStatic memberLastTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean)
Returns the last element of a sequence that satisfies a specified condition.
Public methodStatic memberLastOrDefaultTSource(BcfReadOnlyArrayListTSource)
Returns the last element of a sequence, or a default value if the sequence contains no elements.
Public methodStatic memberLastOrDefaultTSource(BcfReadOnlyArrayListTSource, FuncTSource, Boolean)
Returns the last element of a sequence that satisfies a condition or a default value if no such element is found.
Public methodStatic memberReverseTSource
Inverts the order of the elements in a sequence.
Public methodStatic memberSelectTSource, TResult
Projects each element of a sequence into a new form.
Public methodStatic memberSelectManyTSource, TResult(IEnumerableTSource, FuncTSource, BcfReadOnlyArrayListTResult)
Public methodStatic memberSelectManyTSource, 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.
Public methodStatic memberSequenceEqualTDerived, TBase(BcfReadOnlyArrayListTBase, BcfReadOnlyArrayListTDerived, IEqualityComparerTBase)
Determines whether two sequences are equal according to an equality comparer.
Public methodStatic memberSequenceEqualTDerived, TBase(BcfReadOnlyArrayListTBase, BcfReadOnlyArrayListTDerived, FuncTBase, TBase, Boolean)
Determines whether two sequences are equal according to an equality comparer.
Public methodStatic memberSequenceEqualTDerived, TBase(BcfReadOnlyArrayListTBase, IEnumerableTDerived, IEqualityComparerTBase)
Determines whether two sequences are equal according to an equality comparer.
Public methodStatic memberSingleTSource(BcfReadOnlyArrayListTSource)
Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.
Public methodStatic memberSingleTSource(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.
Public methodStatic memberSingleOrDefaultTSource(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.
Public methodStatic memberSingleOrDefaultTSource(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.
Public methodStatic memberToArrayTSource
Copies the contents of this array to a mutable array.
Public methodStatic memberToDictionaryTSource, TKey(BcfReadOnlyArrayListTSource, FuncTSource, TKey)
Creates a dictionary based on the contents of this array.
Public methodStatic memberToDictionaryTSource, TKey(BcfReadOnlyArrayListTSource, FuncTSource, TKey, IEqualityComparerTKey)
Creates a dictionary based on the contents of this array.
Public methodStatic memberToDictionaryTSource, TKey, TElement(BcfReadOnlyArrayListTSource, FuncTSource, TKey, FuncTSource, TElement)
Creates a dictionary based on the contents of this array.
Public methodStatic memberToDictionaryTSource, TKey, TElement(BcfReadOnlyArrayListTSource, FuncTSource, TKey, FuncTSource, TElement, IEqualityComparerTKey)
Creates a dictionary based on the contents of this array.
Public methodStatic memberWhereTSource
Filters a sequence of values based on a predicate.
Top
See Also