Array1D<T>.Span Method

Gets a span of the specified length over the array.

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Span<T> Span(
	int length
)

Parameters

length  Int32
The length of the span.

Return Value

Span<T>
A span of length elements starting at the first element in the array.

See Also