Click or drag to resize

SequenceT, TSelf Methods

The SequenceT, TSelf type exposes the following members.

Methods
 NameDescription
Public methodAllChecks whether the predicate is satisfied by all items.
Public methodAnyChecks whether the predicate is satisfied by at least one item.
Public methodClonePerforms a shallow copy of the sequence and performs a reset.
Public methodContainsChecks if the sequence contains the given value.
Public methodDistinctGets only the unique values in this sequence.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodFilterTransform a sequence acording to the predicate passed as parameter.
Public methodFirstGets the first value in the sequence.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodLastGets the last value in the sequence.
Public methodLengthGets the total number of values in the sequence.
Public methodMapTransform a sequence acording to the function passed as parameter.
Public methodNextGets the next item in the sequence.
Public methodPointwiseDivideItem by item division of sequences.
Public methodPointwiseMultiplyItem by item multiplication of two sequences.
Public methodProductGets the product of all the values in the sequence.
Public methodReduceReduces a sequence to a single number.
Public methodResetResets the sequence.
Public methodSumGets the sum of all the values in the sequence.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Public methodUntil(FuncT, Boolean)Get the initial values of a sequence until a predicate is satisfied.
Public methodUntil(T)Get the initial values of a sequence until a value is found.
Public methodWhileGet the initial values of a sequence that satisfy a predicate.
Public methodZipJoins the common part of two sequence with the help of a lambda.
Top
See Also