Vector128.AsInt64<T>(Vector128<T>) 方法

定义

Vector128<T> 重新解释为 Int64 类型的新 Vector128Reinterprets a Vector128<T> as a new Vector128 of type Int64.

public:
generic <typename T>
 where T : value class[System::Runtime::CompilerServices::Extension]
 static System::Runtime::Intrinsics::Vector128<long> AsInt64(System::Runtime::Intrinsics::Vector128<T> vector);
public static System.Runtime.Intrinsics.Vector128<long> AsInt64<T> (this System.Runtime.Intrinsics.Vector128<T> vector) where T : struct;
static member AsInt64 : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector128<int64> (requires 'T : struct)
<Extension()>
Public Function AsInt64(Of T As Structure) (vector As Vector128(Of T)) As Vector128(Of Long)

类型参数

T

输入向量的类型。The type of the input vector.

参数

vector
Vector128<T>

要重新解释的向量。The vector to reinterpret.

返回

Vector128<Int64>

vector 重新解释为 Int64 类型的新 Vector128vector reinterpreted as a new Vector128 of type Int64.

例外

不支持 vector 类型 (T)。The type of vector (T) is not supported.

适用于