Vector128.CopyTo Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
CopyTo<T>(Vector128<T>, Span<T>) |
Kopiert eine Vector128<T> in eine bestimmte Spanne. |
CopyTo<T>(Vector128<T>, T[]) |
Kopiert ein Vector128<T> in ein angegebenes Array. |
CopyTo<T>(Vector128<T>, T[], Int32) |
Kopiert eine Vector128<T> ab dem angegebenen Index in ein angegebenes Array. |
CopyTo<T>(Vector128<T>, Span<T>)
- Quelle:
- Vector128.cs
- Quelle:
- Vector128.cs
- Quelle:
- Vector128.cs
Kopiert eine Vector128<T> in eine bestimmte Spanne.
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))
Typparameter
- T
Der Typ der Elemente im Vektor.
Parameter
- vector
- Vector128<T>
Der zu kopierende Vektor.
- destination
- Span<T>
Die Spanne, in die kopiert vector
wird.
Ausnahmen
Die Länge vondestination
ist kleiner als Count.
Der Typ von vector
und destination
(T
) wird nicht unterstützt.
Gilt für:
CopyTo<T>(Vector128<T>, T[])
- Quelle:
- Vector128.cs
- Quelle:
- Vector128.cs
- Quelle:
- Vector128.cs
Kopiert ein Vector128<T> in ein angegebenes Array.
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())
Typparameter
- T
Der Typ der Elemente im Vektor.
Parameter
- vector
- Vector128<T>
Der zu kopierende Vektor.
- destination
- T[]
Das Array, in das vector
kopiert wird.
Ausnahmen
destination
ist null
Die Länge vondestination
ist kleiner als Count.
Der Typ von vector
und destination
(T
) wird nicht unterstützt.
Gilt für:
CopyTo<T>(Vector128<T>, T[], Int32)
- Quelle:
- Vector128.cs
- Quelle:
- Vector128.cs
- Quelle:
- Vector128.cs
Kopiert eine Vector128<T> ab dem angegebenen Index in ein angegebenes Array.
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)
Typparameter
- T
Der Typ der Elemente im Vektor.
Parameter
- vector
- Vector128<T>
Der zu kopierende Vektor.
- destination
- T[]
Das Array, in das vector
kopiert wird.
- startIndex
- Int32
Der Anfangsindex, in destination
den vector
kopiert wird.
Ausnahmen
Die Länge vondestination
ist kleiner als Count.
destination
ist null
.
startIndex
ist negativ oder größer als die Länge von destination
.
Der Typ von vector
und destination
(T
) wird nicht unterstützt.