Vector.AsVectorInt16<T>(Vector<T>) Método
Definição
Reinterpreta os bits de um vetor especificado para os de um vetor de inteiros de 16 bits.Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.
public:
generic <typename T>
where T : value class static System::Numerics::Vector<short> AsVectorInt16(System::Numerics::Vector<T> value);
public static System.Numerics.Vector<short> AsVectorInt16<T> (System.Numerics.Vector<T> value) where T : struct;
static member AsVectorInt16 : System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<int16> (requires 'T : struct)
Public Shared Function AsVectorInt16(Of T As Structure) (value As Vector(Of T)) As Vector(Of Short)
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
O vetor reinterpretado.The reinterpreted vector.