AggregateRightExtension Class
AggregateRight extension.
Namespace: MoreLinq.ExtensionsAssembly: MoreLinq (in MoreLinq.dll) Version: 4.0.0+092a40d82a1b280568ffa006d9a210bdec0792cd
public static class AggregateRightExtension
<ExtensionAttribute>
Public NotInheritable Class AggregateRightExtension
[ExtensionAttribute]
public ref class AggregateRightExtension abstract sealed
[<AbstractClassAttribute>]
[<SealedAttribute>]
[<ExtensionAttribute>]
type AggregateRightExtension = class end
- Inheritance
- Object AggregateRightExtension
AggregateRight<TSource>(IEnumerable<TSource>, Func<TSource, TSource, TSource>) |
Applies a right-associative accumulator function over a sequence.
This operator is the right-associative version of the
Aggregate<TSource>(IEnumerable<TSource>, Func<TSource, TSource, TSource>) LINQ operator.
|
AggregateRight<TSource, TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TSource, TAccumulate, TAccumulate>) |
Applies a right-associative accumulator function over a sequence.
The specified seed value is used as the initial accumulator value.
This operator is the right-associative version of the
Aggregate<TSource, TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>) LINQ operator.
|
AggregateRight<TSource, TAccumulate, TResult>(IEnumerable<TSource>, TAccumulate, Func<TSource, TAccumulate, TAccumulate>, Func<TAccumulate, TResult>) |
Applies a right-associative 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.
This operator is the right-associative version of the
Aggregate<TSource, TAccumulate, TResult>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>, Func<TAccumulate, TResult>) LINQ operator.
|