Vector256.StoreAligned<T>(Vector256<T>, T*) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
重要
此 API 不符合 CLS 規範。
將向量儲存在指定的對齊目的地。
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void StoreAligned(System::Runtime::Intrinsics::Vector256<T> source, T* destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreAligned(System::Runtime::Intrinsics::Vector256<T> source, T* destination);
[System.CLSCompliant(false)]
public static void StoreAligned<T> (this System.Runtime.Intrinsics.Vector256<T> source, T* destination) where T : struct;
[System.CLSCompliant(false)]
public static void StoreAligned<T> (this System.Runtime.Intrinsics.Vector256<T> source, T* destination);
[<System.CLSCompliant(false)>]
static member StoreAligned : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * nativeptr<'T> -> unit (requires 'T : struct)
[<System.CLSCompliant(false)>]
static member StoreAligned : System.Runtime.Intrinsics.Vector256<'T> * nativeptr<'T> -> unit
類型參數
- T
向量中專案的型別。
參數
- source
- Vector256<T>
要儲存的向量。
- destination
- T*
要儲存的 source
對齊目的地。
- 屬性
例外狀況
不支援和 destination
(T
) 的類型source
。