Share via


Vector512.CopyTo 메서드

정의

오버로드

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

지정된 배열에 을 복사합니다 Vector512<T> .

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

지정된 범위에 을 복사합니다 Vector512<T> .

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

지정된 인덱스에서 Vector512<T> 시작하는 지정된 배열에 을 복사합니다.

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

Source:
Vector512.cs
Source:
Vector512.cs

지정된 배열에 을 복사합니다 Vector512<T> .

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

형식 매개 변수

T

벡터에 있는 요소의 형식입니다.

매개 변수

vector
Vector512<T>

복사할 벡터입니다.

destination
T[]

복사할 vector 배열입니다.

예외

destination의 길이가 Count보다 작습니다.

destination (T)의 vector 형식은 지원되지 않습니다.

destinationnull입니다.

적용 대상

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

Source:
Vector512.cs
Source:
Vector512.cs

지정된 범위에 을 복사합니다 Vector512<T> .

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

형식 매개 변수

T

벡터에 있는 요소의 형식입니다.

매개 변수

vector
Vector512<T>

복사할 벡터입니다.

destination
Span<T>

가 복사되는 vector 범위입니다.

예외

destination의 길이가 Count보다 작습니다.

destination (T)의 vector 형식은 지원되지 않습니다.

적용 대상

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

Source:
Vector512.cs
Source:
Vector512.cs

지정된 인덱스에서 Vector512<T> 시작하는 지정된 배열에 을 복사합니다.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void CopyTo(System::Runtime::Intrinsics::Vector512<T> vector, cli::array <T> ^ destination, int startIndex);
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector512<T> vector, T[] destination, int startIndex);
static member CopyTo : System.Runtime.Intrinsics.Vector512<'T> * 'T[] * int -> unit
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector512(Of T), destination As T(), startIndex As Integer)

형식 매개 변수

T

벡터에 있는 요소의 형식입니다.

매개 변수

vector
Vector512<T>

복사할 벡터입니다.

destination
T[]

복사할 vector 배열입니다.

startIndex
Int32

복사할 시작 인덱 destinationvector 스입니다.

예외

destination의 길이가 Count보다 작습니다.

startIndex가 음수이거나 destination의 길이보다 큰 경우

destination (T)의 vector 형식은 지원되지 않습니다.

destinationnull입니다.

적용 대상