A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://morelinq.github.io/3.0/ref/api/html/M_MoreLinq_Extensions_WindowExtension_Window__1.htm below:

WindowExtensionWindowTSource Method

Processes a sequence into a series of subsequences representing a windowed subset of the original

Namespace:  MoreLinq.Extensions
Assembly:

MoreLinq (in MoreLinq.dll) Version: 3.0.0

Syntax
public static IEnumerable<IList<TSource>> Window<TSource>(
	this IEnumerable<TSource> source,
	int size
)
<ExtensionAttribute>
Public Shared Function Window(Of TSource) ( 
	source As IEnumerable(Of TSource),
	size As Integer
) As IEnumerable(Of IList(Of TSource))
public:
[ExtensionAttribute]
generic<typename TSource>
static IEnumerable<IList<TSource>^>^ Window(
	IEnumerable<TSource>^ source, 
	int size
)
[<ExtensionAttribute>]
static member Window : 
        source : IEnumerable<'TSource> * 
        size : int -> IEnumerable<IList<'TSource>> 
Parameters
source
Type: System.Collections.GenericIEnumerableTSource
The sequence to evaluate a sliding window over
size
Type: SystemInt32
The size (number of elements) in each window
Type Parameters
TSource
The type of the elements of the source sequence
Return Value

Type:

IEnumerableIListTSource

A series of sequences representing each sliding window subsequence

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

The number of sequences returned is: Max(0, sequence.Count() - windowSize) + 1
Returned subsequences are buffered, but the overall operation is streamed.

See Also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4