Vector256.TryCopyTo<T>(Vector256<T>, Span<T>) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Пытается скопировать в заданный Vector<T> диапазон.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static bool TryCopyTo(System::Runtime::Intrinsics::Vector256<T> vector, Span<T> destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static bool TryCopyTo(System::Runtime::Intrinsics::Vector256<T> vector, Span<T> destination);
public static bool TryCopyTo<T> (this System.Runtime.Intrinsics.Vector256<T> vector, Span<T> destination) where T : struct;
public static bool TryCopyTo<T> (this System.Runtime.Intrinsics.Vector256<T> vector, Span<T> destination);
static member TryCopyTo : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * Span<'T (requires 'T : struct)> -> bool (requires 'T : struct)
static member TryCopyTo : System.Runtime.Intrinsics.Vector256<'T> * Span<'T> -> bool
<Extension()>
Public Function TryCopyTo(Of T As Structure) (vector As Vector256(Of T), destination As Span(Of T)) As Boolean
<Extension()>
Public Function TryCopyTo(Of T) (vector As Vector256(Of T), destination As Span(Of T)) As Boolean
Параметры типа
- T
Тип входного вектора.
Параметры
- vector
- Vector256<T>
Копируемий вектор.
- destination
- Span<T>
Диапазон, в который destination
копируется.
Возвращаемое значение
true
Значение , если vector
успешно скопировано в destination
; в противном случае — значение , false
если длина destination
меньше Count.
Исключения
Тип vector
и destination
(T
) не поддерживается.