Click or drag to resize
AggregationChunkWhileK Method
Aggregate data into non-overlapping chunks where each chunk ends as soon as the specified function returns `false` when called with the first key and the current key as arguments. ## Parameters - `condition` - A delegate that specifies when to end the current chunk (e.g. `(k1, k2) => k2 - k1 < 10` means that the difference between keys in each chunk will be less than 10.

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Aggregation<K> ChunkWhile<K>(
	Func<K, K, bool> condition
)

Parameters

condition
Type: SystemFuncK, K, Boolean

[Missing <param name="condition"/> documentation for "M:Deedle.Aggregation.ChunkWhile``1(System.Func{``0,``0,System.Boolean})"]

Type Parameters

K

Return Value

Type: AggregationK

[Missing <returns> documentation for "M:Deedle.Aggregation.ChunkWhile``1(System.Func{``0,``0,System.Boolean})"]

See Also