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