Vector128.StoreUnsafe Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
StoreUnsafe<T>(Vector128<T>, T) |
Uloží vektor v daném cíli. |
StoreUnsafe<T>(Vector128<T>, T, UIntPtr) |
Uloží vektor v daném cíli. |
StoreUnsafe<T>(Vector128<T>, T)
- Zdroj:
- Vector128.cs
- Zdroj:
- Vector128.cs
- Zdroj:
- Vector128.cs
Uloží vektor v daném cíli.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination);
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector128<T> source, ref T destination) where T : struct;
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector128<T> source, ref T destination);
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T -> unit (requires 'T : struct)
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T> * 'T -> unit
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector128(Of T), ByRef destination As T)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector128(Of T), ByRef destination As T)
Parametry typu
- T
Typ prvků vektoru.
Parametry
- source
- Vector128<T>
Vektor, který bude uložen.
- destination
- T
Cíl, do kterého se uloží source
.
Výjimky
Typ source
(T
) není podporován.
Platí pro
StoreUnsafe<T>(Vector128<T>, T, UIntPtr)
- Zdroj:
- Vector128.cs
- Zdroj:
- Vector128.cs
- Zdroj:
- Vector128.cs
Důležité
Toto rozhraní API neodpovídá specifikaci CLS.
Uloží vektor v daném cíli.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination, UIntPtr elementOffset);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector128<T> source, T % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector128<T> source, ref T destination, UIntPtr elementOffset) where T : struct;
[System.CLSCompliant(false)]
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector128<T> source, ref T destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T * unativeint -> unit (requires 'T : struct)
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector128<'T> * 'T * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector128(Of T), ByRef destination As T, elementOffset As UIntPtr)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector128(Of T), ByRef destination As T, elementOffset As UIntPtr)
Parametry typu
- T
Typ prvků vektoru.
Parametry
- source
- Vector128<T>
Vektor, který bude uložen.
- destination
- T
Cíl, do kterého se elementOffset
přidá před uložením vektoru.
- elementOffset
-
UIntPtr
unativeint
Posun prvku od destination
, ze kterého bude vektor uložen.
- Atributy
Výjimky
Typ source
(T
) není podporován.