Vector256.CopyTo 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
CopyTo<T>(Vector256<T>, T[], Int32) |
지정된 인덱스에서 시작하는 지정된 배열에 Vector256<T> 복사합니다. |
CopyTo<T>(Vector256<T>, T[]) |
지정된 배열에 Vector256<T> 복사합니다. |
CopyTo<T>(Vector256<T>, Span<T>) |
지정된 범위에 Vector256<T> 복사합니다. |
CopyTo<T>(Vector256<T>, T[], Int32)
- Source:
- Vector256.cs
- Source:
- Vector256.cs
- Source:
- Vector256.cs
지정된 인덱스에서 시작하는 지정된 배열에 Vector256<T> 복사합니다.
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:
generic <typename T>
[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) where T : struct;
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector256<T> vector, T[] destination, int startIndex);
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * 'T[] * int -> unit (requires 'T : struct)
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T> * 'T[] * int -> unit
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector256(Of T), destination As T(), startIndex As Integer)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector256(Of T), destination As T(), startIndex As Integer)
형식 매개 변수
- T
벡터에 있는 요소의 형식입니다.
매개 변수
- vector
- Vector256<T>
복사할 벡터입니다.
- destination
- T[]
vector
복사되는 배열입니다.
- startIndex
- Int32
복사할 vector
destination
시작 인덱스입니다.
예외
destination
길이가 Count미만입니다.
destination
null
.
startIndex
음수이거나 destination
길이보다 큽합니다.
vector
및 destination
(T
)의 형식은 지원되지 않습니다.
적용 대상
CopyTo<T>(Vector256<T>, T[])
- Source:
- Vector256.cs
- Source:
- Vector256.cs
- Source:
- Vector256.cs
지정된 배열에 Vector256<T> 복사합니다.
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:
generic <typename T>
[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) where T : struct;
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector256<T> vector, T[] destination);
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * 'T[] -> unit (requires 'T : struct)
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T> * 'T[] -> unit
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector256(Of T), destination As T())
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector256(Of T), destination As T())
형식 매개 변수
- T
벡터에 있는 요소의 형식입니다.
매개 변수
- vector
- Vector256<T>
복사할 벡터입니다.
- destination
- T[]
vector
복사되는 배열입니다.
예외
destination
null
.
destination
길이가 Count미만입니다.
vector
및 destination
(T
)의 형식은 지원되지 않습니다.
적용 대상
CopyTo<T>(Vector256<T>, Span<T>)
- Source:
- Vector256.cs
- Source:
- Vector256.cs
- Source:
- Vector256.cs
지정된 범위에 Vector256<T> 복사합니다.
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:
generic <typename T>
[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) where T : struct;
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector256<T> vector, Span<T> destination);
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * Span<'T (requires 'T : struct)> -> unit (requires 'T : struct)
static member CopyTo : System.Runtime.Intrinsics.Vector256<'T> * Span<'T> -> unit
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector256(Of T), destination As Span(Of T))
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector256(Of T), destination As Span(Of T))
형식 매개 변수
- T
벡터에 있는 요소의 형식입니다.
매개 변수
- vector
- Vector256<T>
복사할 벡터입니다.
- destination
- Span<T>
vector
복사되는 범위입니다.
예외
destination
길이가 Count미만입니다.
vector
및 destination
(T
)의 형식은 지원되지 않습니다.
적용 대상
.NET