Vector64.CopyTo Methode

Definitie

Overloads

Name Description
CopyTo<T>(Vector64<T>, Span<T>)

Kopieert een Vector64<T> naar een bepaalde periode.

CopyTo<T>(Vector64<T>, T[])

Hiermee kopieert u een Vector64<T> naar een bepaalde matrix.

CopyTo<T>(Vector64<T>, T[], Int32)

Hiermee kopieert u een Vector64<T> naar een bepaalde matrix die begint bij de opgegeven index.

CopyTo<T>(Vector64<T>, Span<T>)

Bron:
Vector64.cs
Bron:
Vector64.cs
Bron:
Vector64.cs
Bron:
Vector64.cs
Bron:
Vector64.cs

Kopieert een Vector64<T> naar een bepaalde periode.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void CopyTo(System::Runtime::Intrinsics::Vector64<T> vector, Span<T> destination);
public:
generic <typename T>
 where T : value class[System::Runtime::CompilerServices::Extension]
 static void CopyTo(System::Runtime::Intrinsics::Vector64<T> vector, Span<T> destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector64<T> vector, Span<T> destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector64<T> vector, Span<T> destination) where T : struct;
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T> * Span<'T> -> unit
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * Span<'T (requires 'T : struct)> -> unit (requires 'T : struct)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector64(Of T), destination As Span(Of T))
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector64(Of T), destination As Span(Of T))

Type parameters

T

Het type van de elementen in de vector.

Parameters

vector
Vector64<T>

De vector die moet worden gekopieerd.

destination
Span<T>

De periode waarnaar vector 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>(Vector64<T>, T[])

Bron:
Vector64.cs
Bron:
Vector64.cs
Bron:
Vector64.cs
Bron:
Vector64.cs
Bron:
Vector64.cs

Hiermee kopieert u een Vector64<T> naar een bepaalde matrix.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void CopyTo(System::Runtime::Intrinsics::Vector64<T> vector, cli::array <T> ^ destination);
public:
generic <typename T>
 where T : value class[System::Runtime::CompilerServices::Extension]
 static void CopyTo(System::Runtime::Intrinsics::Vector64<T> vector, cli::array <T> ^ destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector64<T> vector, T[] destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector64<T> vector, T[] destination) where T : struct;
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T> * 'T[] -> unit
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * 'T[] -> unit (requires 'T : struct)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector64(Of T), destination As T())
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector64(Of T), destination As T())

Type parameters

T

Het type van de elementen in de vector.

Parameters

vector
Vector64<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.

Van toepassing op

CopyTo<T>(Vector64<T>, T[], Int32)

Bron:
Vector64.cs
Bron:
Vector64.cs
Bron:
Vector64.cs
Bron:
Vector64.cs
Bron:
Vector64.cs

Hiermee kopieert u een Vector64<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::Vector64<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::Vector64<T> vector, cli::array <T> ^ destination, int startIndex);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector64<T> vector, T[] destination, int startIndex);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector64<T> vector, T[] destination, int startIndex) where T : struct;
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T> * 'T[] * int -> unit
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * 'T[] * int -> unit (requires 'T : struct)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector64(Of T), destination As T(), startIndex As Integer)
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector64(Of T), destination As T(), startIndex As Integer)

Type parameters

T

Het type van de elementen in de vector.

Parameters

vector
Vector64<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