Click or drag to resize

AggregateRightExtension Class

AggregateRight extension.
Inheritance Hierarchy
SystemObject
  MoreLinq.ExtensionsAggregateRightExtension

Namespace:  MoreLinq.Extensions
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.3.1+b77df70598ab84c28cd43dcf74594024b6d575e1
Syntax
public static class AggregateRightExtension
Methods
  NameDescription
Public methodStatic memberCode exampleAggregateRightTSource(IEnumerableTSource, FuncTSource, TSource, TSource)
Applies a right-associative accumulator function over a sequence. This operator is the right-associative version of the AggregateTSource(IEnumerableTSource, FuncTSource, TSource, TSource) LINQ operator.
Public methodStatic memberCode exampleAggregateRightTSource, TAccumulate(IEnumerableTSource, TAccumulate, FuncTSource, 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 AggregateTSource, TAccumulate(IEnumerableTSource, TAccumulate, FuncTAccumulate, TSource, TAccumulate) LINQ operator.
Public methodStatic memberCode exampleAggregateRightTSource, TAccumulate, TResult(IEnumerableTSource, TAccumulate, FuncTSource, TAccumulate, TAccumulate, FuncTAccumulate, 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 AggregateTSource, TAccumulate, TResult(IEnumerableTSource, TAccumulate, FuncTAccumulate, TSource, TAccumulate, FuncTAccumulate, TResult) LINQ operator.
Top
See Also