Vector64.StoreUnsafe 方法

定義

多載

StoreUnsafe<T>(Vector64<T>, T)

將向量儲存在指定的目的地。

StoreUnsafe<T>(Vector64<T>, T, UIntPtr)

將向量儲存在指定的目的地。

StoreUnsafe<T>(Vector64<T>, T)

來源:
Vector64.cs
來源:
Vector64.cs
來源:
Vector64.cs

將向量儲存在指定的目的地。

public:
generic <typename T>
 where T : value class[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Runtime::Intrinsics::Vector64<T> source, T % destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Runtime::Intrinsics::Vector64<T> source, T % destination);
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector64<T> source, ref T destination) where T : struct;
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector64<T> source, ref T destination);
static member StoreUnsafe : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * 'T -> unit (requires 'T : struct)
static member StoreUnsafe : System.Runtime.Intrinsics.Vector64<'T> * 'T -> unit
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector64(Of T), ByRef destination As T)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector64(Of T), ByRef destination As T)

類型參數

T

向量中專案的型別。

參數

source
Vector64<T>

將儲存的向量。

destination
T

將儲存的 source 目的地。

例外狀況

不支援 source (T) 的類型。

適用於

StoreUnsafe<T>(Vector64<T>, T, UIntPtr)

來源:
Vector64.cs
來源:
Vector64.cs
來源:
Vector64.cs

重要

此 API 不符合 CLS 規範。

將向量儲存在指定的目的地。

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

類型參數

T

向量中專案的型別。

參數

source
Vector64<T>

將儲存的向量。

destination
T

將儲存向量之前要加入的目的地 elementOffset

elementOffset
UIntPtr

unativeint

要從中儲存向量的元素位移 destination

屬性

例外狀況

不支援 source (T) 的類型。

適用於