Vector.AsVectorNInt<T>(Vector<T>) Method

Definition

Reinterprets the bits of a specified vector into those of a vector of native-sized integers.

public:
generic <typename T>
 where T : value class static System::Numerics::Vector<IntPtr> AsVectorNInt(System::Numerics::Vector<T> value);
public:
generic <typename T>
 static System::Numerics::Vector<IntPtr> AsVectorNInt(System::Numerics::Vector<T> value);
public static System.Numerics.Vector<nint> AsVectorNInt<T> (System.Numerics.Vector<T> value) where T : struct;
public static System.Numerics.Vector<IntPtr> AsVectorNInt<T> (System.Numerics.Vector<T> value) where T : struct;
public static System.Numerics.Vector<IntPtr> AsVectorNInt<T> (System.Numerics.Vector<T> value);
static member AsVectorNInt : System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<nativeint> (requires 'T : struct)
static member AsVectorNInt : System.Numerics.Vector<'T> -> System.Numerics.Vector<nativeint>
Public Function AsVectorNInt(Of T As Structure) (value As Vector(Of T)) As Vector(Of IntPtr)
Public Function AsVectorNInt(Of T) (value As Vector(Of T)) As Vector(Of IntPtr)

Type Parameters

T

The type of the input vector.

Parameters

value
Vector<T>

The vector to reinterpret.

Returns

Vector<IntPtr>

Vector<nint>

Vector<nativeint>

value reinterpreted as a new Vector<T>.

Exceptions

The type of value (T) is not supported.

Applies to