Vector256.CopyTo Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Overloads
| Name | Description |
|---|---|
| CopyTo<T>(Vector256<T>, T[], Int32) |
Hiermee kopieert u een Vector256<T> naar een bepaalde matrix die begint bij de opgegeven index. |
| CopyTo<T>(Vector256<T>, Span<T>) |
Kopieert een Vector256<T> naar een bepaalde periode. |
| CopyTo<T>(Vector256<T>, T[]) |
Hiermee kopieert u een Vector256<T> naar een bepaalde matrix. |
CopyTo<T>(Vector256<T>, T[], Int32)
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
Hiermee kopieert u een Vector256<T> naar een bepaalde matrix die begint bij de opgegeven index.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector256<T> vector, cli::array <T> ^ destination, int startIndex);
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector256<T> vector, cli::array <T> ^ destination, int startIndex);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector256<T> vector, T[] destination, int startIndex);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector256<T> vector, T[] destination, int startIndex) where T : struct;
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T> * 'T[] * int -> unit
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * 'T[] * int -> unit (requires 'T : struct)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector256(Of T), destination As T(), startIndex As Integer)
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector256(Of T), destination As T(), startIndex As Integer)
Type parameters
- T
Het type van de elementen in de vector.
Parameters
- vector
- Vector256<T>
De vector die moet worden gekopieerd.
- destination
- T[]
De matrix waarnaar vector wordt gekopieerd.
- startIndex
- Int32
De beginindex destination waarnaar vector wordt gekopieerd.
Uitzonderingen
De lengte van destination is kleiner dan Count.
destination is null.
startIndex is negatief of groter dan de lengte van destination.
Het type vector en destination (T) worden niet ondersteund.
Van toepassing op
CopyTo<T>(Vector256<T>, Span<T>)
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
Kopieert een Vector256<T> naar een bepaalde periode.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector256<T> vector, Span<T> destination);
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector256<T> vector, Span<T> destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector256<T> vector, Span<T> destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector256<T> vector, Span<T> destination) where T : struct;
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T> * Span<'T> -> unit
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * Span<'T (requires 'T : struct)> -> unit (requires 'T : struct)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector256(Of T), destination As Span(Of T))
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector256(Of T), destination As Span(Of T))
Type parameters
- T
Het type van de elementen in de vector.
Parameters
- vector
- Vector256<T>
De vector die moet worden gekopieerd.
- destination
- Span<T>
Het bereik waarnaar de vector kopie wordt gekopieerd.
Uitzonderingen
De lengte van destination is kleiner dan Count.
Het type vector en destination (T) worden niet ondersteund.
Van toepassing op
CopyTo<T>(Vector256<T>, T[])
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
- Bron:
- Vector256.cs
Hiermee kopieert u een Vector256<T> naar een bepaalde matrix.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector256<T> vector, cli::array <T> ^ destination);
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector256<T> vector, cli::array <T> ^ destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector256<T> vector, T[] destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector256<T> vector, T[] destination) where T : struct;
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T> * 'T[] -> unit
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * 'T[] -> unit (requires 'T : struct)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector256(Of T), destination As T())
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector256(Of T), destination As T())
Type parameters
- T
Het type van de elementen in de vector.
Parameters
- vector
- Vector256<T>
De vector die moet worden gekopieerd.
- destination
- T[]
De matrix waarnaar vector wordt gekopieerd.
Uitzonderingen
destination is null.
De lengte van destination is kleiner dan Count.
Het type vector en destination (T) worden niet ondersteund.