Vector128.LoadUnsafe Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
LoadUnsafe<T>(T) |
Ładuje wektor z danego źródła. |
LoadUnsafe<T>(T, UIntPtr) |
Ładuje wektor z danego przesunięcia źródła i elementu. |
LoadUnsafe<T>(T)
- Źródło:
- Vector128.cs
- Źródło:
- Vector128.cs
- Źródło:
- Vector128.cs
Ładuje wektor z danego źródła.
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)
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 source
elementu .
Wyjątki
Typ source
(T
) nie jest obsługiwany.
Dotyczy
LoadUnsafe<T>(T, UIntPtr)
- Źródło:
- Vector128.cs
- Źródło:
- Vector128.cs
- Źródło:
- Vector128.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::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)
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.