Click or drag to resize

MoreEnumerableScanByTSource, TKey, TState Method (IEnumerableTSource, FuncTSource, TKey, FuncTKey, TState, FuncTState, TKey, TSource, TState, IEqualityComparerTKey)

Applies an accumulator function over sequence element keys, returning the keys along with intermediate accumulator states. An additional parameter specifies the comparer to use to compare keys.

Namespace:  MoreLinq
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.3.1+b77df70598ab84c28cd43dcf74594024b6d575e1
Syntax
public static IEnumerable<KeyValuePair<TKey, TState>> ScanBy<TSource, TKey, TState>(
	this IEnumerable<TSource> source,
	Func<TSource, TKey> keySelector,
	Func<TKey, TState> seedSelector,
	Func<TState, TKey, TSource, TState> accumulator,
	IEqualityComparer<TKey> comparer
)

Parameters

source
Type: System.Collections.GenericIEnumerableTSource
The source sequence.
keySelector
Type: SystemFuncTSource, TKey
A function that returns the key given an element.
seedSelector
Type: SystemFuncTKey, TState
A function to determine the initial value for the accumulator that is invoked once per key encountered.
accumulator
Type: SystemFuncTState, TKey, TSource, TState
An accumulator function invoked for each element.
comparer
Type: System.Collections.GenericIEqualityComparerTKey
The equality comparer to use to determine whether or not keys are equal. If null, the default equality comparer for TSource is used.

Type Parameters

TSource
Type of the elements of the source sequence.
TKey
The type of the key.
TState
Type of the state.

Return Value

Type: IEnumerableKeyValuePairTKey, TState
A sequence of keys paired with intermediate accumulator states.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also