Click or drag to resize

ScanExtension Class

Scan extension.
Inheritance Hierarchy
SystemObject
  MoreLinq.ExtensionsScanExtension

Namespace:  MoreLinq.Extensions
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.3.1+b77df70598ab84c28cd43dcf74594024b6d575e1
Syntax
public static class ScanExtension
Methods
  NameDescription
Public methodStatic memberCode exampleScanTSource(IEnumerableTSource, FuncTSource, TSource, TSource)
Performs a scan (inclusive prefix sum) on a sequence of elements.
Public methodStatic memberCode exampleScanTSource, TState(IEnumerableTSource, TState, FuncTState, TSource, TState)
Like AggregateTSource(IEnumerableTSource, FuncTSource, TSource, TSource) except returns the sequence of intermediate results as well as the final one. An additional parameter specifies a seed.
Top
See Also