Vector.AsVectorInt32<T>(Vector<T>) Método

Definição

Reinterpreta os bits de um vetor especificado para os de um vetor de inteiros.Reinterprets the bits of a specified vector into those of a vector of integers.

public:
generic <typename T>
 where T : value class static System::Numerics::Vector<int> AsVectorInt32(System::Numerics::Vector<T> value);
public static System.Numerics.Vector<int> AsVectorInt32<T> (System.Numerics.Vector<T> value) where T : struct;
static member AsVectorInt32 : System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<int> (requires 'T : struct)
Public Shared Function AsVectorInt32(Of T As Structure) (value As Vector(Of T)) As Vector(Of Integer)

Parâmetros de tipo

T

O tipo de vetor.The vector type. T pode ser qualquer tipo numérico primitivo.T can be any primitive numeric type.

Parâmetros

value
Vector<T>

O vetor de origem.The source vector.

Retornos

Vector<Int32>

O vetor reinterpretado.The reinterpreted vector.

Aplica-se a