Vector64.ToVector128<T>(Vector64<T>) Método
Definição
Converte o vetor especificado em um novo Vector128<T> com os 64 bits inferiores definidos com o valor do vetor especificado os 64 bits superiores inicializados como zero.Converts the given vector to a new Vector128<T> with the lower 64-bits set to the value of the given vector and the upper 64-bits initialized to zero.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector128<T> ToVector128(System::Runtime::Intrinsics::Vector64<T> vector);
public static System.Runtime.Intrinsics.Vector128<T> ToVector128<T> (this System.Runtime.Intrinsics.Vector64<T> vector) where T : struct;
static member ToVector128 : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> (requires 'T : struct)
<Extension()>
Public Function ToVector128(Of T As Structure) (vector As Vector64(Of T)) As Vector128(Of T)
Parâmetros de tipo
- T
O tipo do vetor de entrada.The type of the input vector.
Parâmetros
- vector
- Vector64<T>
O vetor a ser estendido.The vector to extend.
Retornos
Um novo Vector128<T> com os 64 bits inferiores definidos com o valor vector e os 64 bits superiores inicializados como zero.A new Vector128<T> with the lower 64-bits set to the value of vector and the upper 64-bits initialized to zero.
Exceções
Não há suporte para o tipo de vector (T).The type of vector (T) is not supported.