ScanRightExtension Methods |
Name | Description | |
---|---|---|
![]() ![]() ![]() | ScanRight<TSource>(IEnumerable<TSource>, Func<TSource, TSource, TSource>) |
Peforms a right-associative scan (inclusive prefix) on a sequence of elements.
This operator is the right-associative version of the
Scan<TSource> (IEnumerable<TSource> , Func<TSource, TSource, TSource> ) LINQ operator.
|
![]() ![]() ![]() | ScanRight<TSource, TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TSource, TAccumulate, TAccumulate>) |
Peforms a right-associative scan (inclusive prefix) on a sequence of elements.
The specified seed value is used as the initial accumulator value.
This operator is the right-associative version of the
Scan<TSource, TState> (IEnumerable<TSource> , TState, Func<TState, TSource, TState> ) LINQ operator.
|