Vector64.CopyTo Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Överlagringar
| Name | Description |
|---|---|
| CopyTo<T>(Vector64<T>, Span<T>) |
Kopierar en Vector64<T> till ett angivet intervall. |
| CopyTo<T>(Vector64<T>, T[]) |
Kopierar en Vector64<T> till en viss matris. |
| CopyTo<T>(Vector64<T>, T[], Int32) |
Kopierar en Vector64<T> till en angiven matris med början vid det angivna indexet. |
CopyTo<T>(Vector64<T>, Span<T>)
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
Kopierar en Vector64<T> till ett angivet intervall.
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))
Typparametrar
- T
Typ av element i vektorn.
Parametrar
- vector
- Vector64<T>
Den vektor som ska kopieras.
- destination
- Span<T>
Det intervall som vector kopieras till.
Undantag
Längden destination på är mindre än Count.
Typen av vector och destination (T) stöds inte.
Gäller för
CopyTo<T>(Vector64<T>, T[])
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
Kopierar en Vector64<T> till en viss matris.
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())
Typparametrar
- T
Typ av element i vektorn.
Parametrar
- vector
- Vector64<T>
Den vektor som ska kopieras.
- destination
- T[]
Matrisen som vector kopieras till.
Undantag
destination är null.
Längden destination på är mindre än Count.
Typen av vector och destination (T) stöds inte.
Gäller för
CopyTo<T>(Vector64<T>, T[], Int32)
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
- Källa:
- Vector64.cs
Kopierar en Vector64<T> till en angiven matris med början vid det angivna indexet.
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)
Typparametrar
- T
Typ av element i vektorn.
Parametrar
- vector
- Vector64<T>
Den vektor som ska kopieras.
- destination
- T[]
Matrisen som vector kopieras till.
- startIndex
- Int32
Startindexet destination som vector kopieras till.
Undantag
Längden destination på är mindre än Count.
destination är null.
startIndex är negativ eller större än längden på destination.
Typen av vector och destination (T) stöds inte.