ScanRightExtension Class

ScanRight extension.

Definition

Namespace: MoreLinq.Extensions
Assembly: MoreLinq (in MoreLinq.dll) Version: 4.1.0+0e154ef592f33ce0f6f3d534a9eedee273f0ce72
C#
public static class ScanRightExtension
Inheritance
Object    ScanRightExtension

Methods

ScanRightTSource(IEnumerableTSource, FuncTSource, TSource, TSource) Performs a right-associative scan (inclusive prefix) on a sequence of elements. This operator is the right-associative version of the ScanTSource(IEnumerableTSource, FuncTSource, TSource, TSource) LINQ operator.
ScanRightTSource, TAccumulate(IEnumerableTSource, TAccumulate, FuncTSource, TAccumulate, TAccumulate) Performs 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 ScanTSource, TState(IEnumerableTSource, TState, FuncTState, TSource, TState) LINQ operator.

See Also