Vector128.LoadUnsafe 메서드

정의

오버로드

LoadUnsafe<T>(T)

지정된 원본에서 벡터를 로드합니다.

LoadUnsafe<T>(T, UIntPtr)

지정된 원본 및 요소 오프셋에서 벡터를 로드합니다.

LoadUnsafe<T>(T)

Source:
Vector128.cs
Source:
Vector128.cs
Source:
Vector128.cs

지정된 원본에서 벡터를 로드합니다.

public:
generic <typename T>
 where T : value class static System::Runtime::Intrinsics::Vector128<T> LoadUnsafe(T % source);
public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector128<T> LoadUnsafe(T % source);
public static System.Runtime.Intrinsics.Vector128<T> LoadUnsafe<T> (ref T source) where T : struct;
public static System.Runtime.Intrinsics.Vector128<T> LoadUnsafe<T> (ref T source);
static member LoadUnsafe : 'T -> System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> (requires 'T : struct)
static member LoadUnsafe : 'T -> System.Runtime.Intrinsics.Vector128<'T>
Public Function LoadUnsafe(Of T As Structure) (ByRef source As T) As Vector128(Of T)
Public Function LoadUnsafe(Of T) (ByRef source As T) As Vector128(Of T)

형식 매개 변수

T

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

매개 변수

source
T

벡터를 로드할 원본입니다.

반환

에서 로드된 벡터입니다 source.

예외

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

적용 대상

LoadUnsafe<T>(T, UIntPtr)

Source:
Vector128.cs
Source:
Vector128.cs
Source:
Vector128.cs

중요

이 API는 CLS 규격이 아닙니다.

지정된 원본 및 요소 오프셋에서 벡터를 로드합니다.

public:
generic <typename T>
 where T : value class static System::Runtime::Intrinsics::Vector128<T> LoadUnsafe(T % source, UIntPtr elementOffset);
public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector128<T> LoadUnsafe(T % source, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector128<T> LoadUnsafe<T> (ref T source, UIntPtr elementOffset) where T : struct;
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector128<T> LoadUnsafe<T> (ref T source, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member LoadUnsafe : 'T * unativeint -> System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> (requires 'T : struct)
[<System.CLSCompliant(false)>]
static member LoadUnsafe : 'T * unativeint -> System.Runtime.Intrinsics.Vector128<'T>
Public Function LoadUnsafe(Of T As Structure) (ByRef source As T, elementOffset As UIntPtr) As Vector128(Of T)
Public Function LoadUnsafe(Of T) (ByRef source As T, elementOffset As UIntPtr) As Vector128(Of T)

형식 매개 변수

T

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

매개 변수

source
T

벡터를 로드하기 전에 추가할 원본 elementOffset 입니다.

elementOffset
UIntPtr

unativeint

벡터를 로드할 요소 오프셋 source 입니다.

반환

더하기 elementOffset에서 로드된 벡터입니다source.

특성

예외

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

적용 대상