Vector512.TryCopyTo<T>(Vector512<T>, Span<T>) 方法

定义

尝试将 复制到 Vector<T> 给定范围。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static bool TryCopyTo(System::Runtime::Intrinsics::Vector512<T> vector, Span<T> destination);
public static bool TryCopyTo<T> (this System.Runtime.Intrinsics.Vector512<T> vector, Span<T> destination);
static member TryCopyTo : System.Runtime.Intrinsics.Vector512<'T> * Span<'T> -> bool
<Extension()>
Public Function TryCopyTo(Of T) (vector As Vector512(Of T), destination As Span(Of T)) As Boolean

类型参数

T

输入向量的类型。

参数

vector
Vector512<T>

要复制的向量。

destination
Span<T>

要复制到的 destination 跨度。

返回

true 如果 vector 已成功复制到 destination,则为 ;否则, false 如果 的 destination 长度小于 Count,则为 。

例外

不支持 和 destination (T) 的类型vector

适用于