Udostępnij przez


Vector64.LoadUnsafe Metoda

Definicja

Przeciążenia

LoadUnsafe<T>(T, UIntPtr)

Ładuje wektor z danego przesunięcia źródła i elementu.

LoadUnsafe<T>(T)

Ładuje wektor z danego źródła.

LoadUnsafe<T>(T, UIntPtr)

Źródło:
Vector64.cs
Źródło:
Vector64.cs
Źródło:
Vector64.cs

Ważne

Ten interfejs API nie jest zgodny ze specyfikacją CLS.

Ładuje wektor z danego przesunięcia źródła i elementu.

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

Parametry typu

T

Typ elementów w wektorze.

Parametry

source
T

Źródło, do którego elementOffset zostanie dodane przed załadowaniem wektora.

elementOffset
UIntPtr

unativeint

Przesunięcie elementu, z source którego zostanie załadowany wektor.

Zwraca

Wektor załadowany z source znaku plus elementOffset.

Atrybuty

Wyjątki

Typ source (T) nie jest obsługiwany.

Dotyczy

LoadUnsafe<T>(T)

Źródło:
Vector64.cs
Źródło:
Vector64.cs
Źródło:
Vector64.cs

Ładuje wektor z danego źródła.

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

Parametry typu

T

Typ elementów w wektorze.

Parametry

source
T

Źródło, z którego zostanie załadowany wektor.

Zwraca

Wektor załadowany z sourceelementu .

Wyjątki

Typ source (T) nie jest obsługiwany.

Dotyczy