SpanExtensions.As2D Method

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

As2D<T>(ReadOnlySpan<T>, Int32)

C#
public static ReadOnlySpan2D<T> As2D<T>(
	this ReadOnlySpan<T> span,
	int leadingDimension
)

Parameters

span  ReadOnlySpan<T>
 
leadingDimension  Int32
 

Type Parameters

T

Return Value

ReadOnlySpan2D<T>

Usage Note

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

As2D<T>(Span<T>, Int32)

C#
public static Span2D<T> As2D<T>(
	this Span<T> span,
	int leadingDimension
)

Parameters

span  Span<T>
 
leadingDimension  Int32
 

Type Parameters

T

Return Value

Span2D<T>

Usage Note

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