Click or drag to resize

MoreEnumerableWindowRightTSource Method

Creates a right-aligned sliding window over the source sequence of a given size.

Namespace:  MoreLinq
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.0.0
Syntax
public static IEnumerable<IList<TSource>> WindowRight<TSource>(
	this IEnumerable<TSource> source,
	int size
)

Parameters

source
Type: System.Collections.GenericIEnumerableTSource
The sequence over which to create the sliding window.
size
Type: SystemInt32
Size of the sliding window.

Type Parameters

TSource
The type of the elements of source.

Return Value

Type: IEnumerableIListTSource
A sequence representing each sliding window.

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).
Remarks

A window can contain fewer elements than size, especially as it slides over the start of the sequence.

This operator uses deferred execution and streams its results.

Examples
Console.WriteLine(
    Enumerable
        .Range(1, 5)
        .WindowRight(3)
        .Select(w => "AVG(" + w.ToDelimitedString(",") + ") = " + w.Average())
        .ToDelimitedString(Environment.NewLine));

// Output:
// AVG(1) = 1
// AVG(1,2) = 1.5
// AVG(1,2,3) = 2
// AVG(2,3,4) = 3
// AVG(3,4,5) = 4
See Also