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

Definition

Important

This API is not CLS-compliant.

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

public:
generic <typename T>
 where T : value class static System::Numerics::Vector<UIntPtr> AsVectorNUInt(System::Numerics::Vector<T> value);
public:
generic <typename T>
 static System::Numerics::Vector<UIntPtr> AsVectorNUInt(System::Numerics::Vector<T> value);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<nuint> AsVectorNUInt<T> (System.Numerics.Vector<T> value) where T : struct;
[System.CLSCompliant(false)]
public static System.Numerics.Vector<UIntPtr> AsVectorNUInt<T> (System.Numerics.Vector<T> value) where T : struct;
[System.CLSCompliant(false)]
public static System.Numerics.Vector<UIntPtr> AsVectorNUInt<T> (System.Numerics.Vector<T> value);
[<System.CLSCompliant(false)>]
static member AsVectorNUInt : System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<unativeint> (requires 'T : struct)
[<System.CLSCompliant(false)>]
static member AsVectorNUInt : System.Numerics.Vector<'T> -> System.Numerics.Vector<unativeint>
Public Function AsVectorNUInt(Of T As Structure) (value As Vector(Of T)) As Vector(Of UIntPtr)
Public Function AsVectorNUInt(Of T) (value As Vector(Of T)) As Vector(Of UIntPtr)

Type Parameters

T

The type of the input vector.

Parameters

value
Vector<T>

The vector to reinterpret.

Returns

Vector<UIntPtr>

Vector<nuint>

Vector<unativeint>

value reinterpreted as a new Vector<T>.

Attributes

Exceptions

The type of value (T) is not supported.

Applies to