Vector256.StoreUnsafe メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
StoreUnsafe<T>(Vector256<T>, T) |
指定された変換先にベクターを格納します。 |
StoreUnsafe<T>(Vector256<T>, T, UIntPtr) |
指定された変換先にベクターを格納します。 |
StoreUnsafe<T>(Vector256<T>, T)
- ソース:
- Vector256.cs
- ソース:
- Vector256.cs
- ソース:
- Vector256.cs
指定された変換先にベクターを格納します。
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector256<T> source, T % destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector256<T> source, T % destination);
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector256<T> source, ref T destination) where T : struct;
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector256<T> source, ref T destination);
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * 'T -> unit (requires 'T : struct)
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T> * 'T -> unit
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector256(Of T), ByRef destination As T)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector256(Of T), ByRef destination As T)
型パラメーター
- T
ベクター内の要素の型。
パラメーター
- source
- Vector256<T>
格納されるベクター。
- destination
- T
source
の格納先。
例外
source
と destination
(T
) の種類はサポートされていません。
適用対象
StoreUnsafe<T>(Vector256<T>, T, UIntPtr)
- ソース:
- Vector256.cs
- ソース:
- Vector256.cs
- ソース:
- Vector256.cs
重要
この API は CLS 準拠ではありません。
指定された変換先にベクターを格納します。
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector256<T> source, T % destination, UIntPtr elementOffset);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector256<T> source, T % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector256<T> source, ref T destination, UIntPtr elementOffset) where T : struct;
[System.CLSCompliant(false)]
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector256<T> source, ref T destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * 'T * unativeint -> unit (requires 'T : struct)
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T> * 'T * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector256(Of T), ByRef destination As T, elementOffset As UIntPtr)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector256(Of T), ByRef destination As T, elementOffset As UIntPtr)
型パラメーター
- T
ベクター内の要素の型。
パラメーター
- source
- Vector256<T>
格納されるベクター。
- destination
- T
ベクターが格納される前に elementOffset
が追加される宛先。
- elementOffset
-
UIntPtr
unativeint
ベクターの格納元となる destination
からの要素オフセット。
- 属性
例外
source
と destination
(T
) の種類はサポートされていません。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET