Click or drag to resize
AggregationWindowWhileK Method
Aggregate data into floating windows where each window 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 window (e.g. `(k1, k2) => k2 - k1 < 10` means that the difference between keys in each window will be less than 10.

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

Parameters

condition
Type: SystemFuncK, K, Boolean

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

Type Parameters

K

Return Value

Type: AggregationK

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

See Also