Click or drag to resize
SeriesExtensionsWindowIntoK1, V, K2, U Method (SeriesK1, V, Int32, FuncSeriesK1, V, KeyValuePairK2, U)

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<K2, U> WindowInto<K1, V, K2, U>(
	this Series<K1, V> series,
	int size,
	Func<Series<K1, V>, KeyValuePair<K2, U>> selector
)

Parameters

series
Type: DeedleSeriesK1, V

[Missing <param name="series"/> documentation for "M:Deedle.SeriesExtensions.WindowInto``4(Deedle.Series{``0,``1},System.Int32,System.Func{Deedle.Series{``0,``1},System.Collections.Generic.KeyValuePair{``2,``3}})"]

size
Type: SystemInt32

[Missing <param name="size"/> documentation for "M:Deedle.SeriesExtensions.WindowInto``4(Deedle.Series{``0,``1},System.Int32,System.Func{Deedle.Series{``0,``1},System.Collections.Generic.KeyValuePair{``2,``3}})"]

selector
Type: SystemFuncSeriesK1, V, KeyValuePairK2, U

[Missing <param name="selector"/> documentation for "M:Deedle.SeriesExtensions.WindowInto``4(Deedle.Series{``0,``1},System.Int32,System.Func{Deedle.Series{``0,``1},System.Collections.Generic.KeyValuePair{``2,``3}})"]

Type Parameters

K1
V
K2
U

Return Value

Type: SeriesK2, U

[Missing <returns> documentation for "M:Deedle.SeriesExtensions.WindowInto``4(Deedle.Series{``0,``1},System.Int32,System.Func{Deedle.Series{``0,``1},System.Collections.Generic.KeyValuePair{``2,``3}})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SeriesK1, V. 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