Click or drag to resize
SeriesExtensionsWindowIntoK, V, U Method (SeriesK, V, Int32, FuncSeriesK, V, U)

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

Parameters

series
Type: DeedleSeriesK, V

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

size
Type: SystemInt32

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

reduce
Type: SystemFuncSeriesK, V, U

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

Type Parameters

K
V
U

Return Value

Type: SeriesK, U

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

Usage Note

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