Vector128.CopyTo Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
| CopyTo<T>(Vector128<T>, Span<T>) |
Kopiuje element Vector128<T> do danego zakresu. |
| CopyTo<T>(Vector128<T>, T[]) |
Kopiuje element Vector128<T> do danej tablicy. |
| CopyTo<T>(Vector128<T>, T[], Int32) |
Kopiuje element Vector128<T> do danej tablicy rozpoczynającej się od określonego indeksu. |
CopyTo<T>(Vector128<T>, Span<T>)
- Źródło:
- Vector128.cs
- Źródło:
- Vector128.cs
- Źródło:
- Vector128.cs
Kopiuje element Vector128<T> do danego zakresu.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, Span<T> destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, Span<T> destination);
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector128<T> vector, Span<T> destination) where T : struct;
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector128<T> vector, Span<T> destination);
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * Span<'T (requires 'T : struct)> -> unit (requires 'T : struct)
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T> * Span<'T> -> unit
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector128(Of T), destination As Span(Of T))
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector128(Of T), destination As Span(Of T))
Parametry typu
- T
Typ elementów w wektorze.
Parametry
- vector
- Vector128<T>
Wektor do skopiowania.
- destination
- Span<T>
Zakres, do którego vector jest kopiowany.
Wyjątki
Długość obiektu destination jest mniejsza niż Count.
Typ vector i destination (T) nie jest obsługiwany.
Dotyczy
CopyTo<T>(Vector128<T>, T[])
- Źródło:
- Vector128.cs
- Źródło:
- Vector128.cs
- Źródło:
- Vector128.cs
Kopiuje element Vector128<T> do danej tablicy.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, cli::array <T> ^ destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, cli::array <T> ^ destination);
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector128<T> vector, T[] destination) where T : struct;
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector128<T> vector, T[] destination);
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T[] -> unit (requires 'T : struct)
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T> * 'T[] -> unit
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector128(Of T), destination As T())
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector128(Of T), destination As T())
Parametry typu
- T
Typ elementów w wektorze.
Parametry
- vector
- Vector128<T>
Wektor do skopiowania.
- destination
- T[]
Tablica, do której vector jest kopiowana.
Wyjątki
destination to null.
Długość obiektu destination jest mniejsza niż Count.
Typ vector i destination (T) nie jest obsługiwany.
Dotyczy
CopyTo<T>(Vector128<T>, T[], Int32)
- Źródło:
- Vector128.cs
- Źródło:
- Vector128.cs
- Źródło:
- Vector128.cs
Kopiuje element Vector128<T> do danej tablicy rozpoczynającej się od określonego indeksu.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, cli::array <T> ^ destination, int startIndex);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, cli::array <T> ^ destination, int startIndex);
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector128<T> vector, T[] destination, int startIndex) where T : struct;
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector128<T> vector, T[] destination, int startIndex);
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T[] * int -> unit (requires 'T : struct)
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T> * 'T[] * int -> unit
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector128(Of T), destination As T(), startIndex As Integer)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector128(Of T), destination As T(), startIndex As Integer)
Parametry typu
- T
Typ elementów w wektorze.
Parametry
- vector
- Vector128<T>
Wektor do skopiowania.
- destination
- T[]
Tablica, do której vector jest kopiowana.
- startIndex
- Int32
Początkowy indeks, do destination którego vector zostanie skopiowany.
Wyjątki
Długość obiektu destination jest mniejsza niż Count.
destination to null.
startIndex jest ujemna lub większa niż długość obiektu destination.
Typ vector i destination (T) nie jest obsługiwany.