Vector256.StoreUnsafe 方法

定义

重载

StoreUnsafe<T>(Vector256<T>, T)

将向量存储在给定目标处。

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

将向量存储在给定目标处。

StoreUnsafe<T>(Vector256<T>, T)

Source:
Vector256.cs
Source:
Vector256.cs
Source:
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

例外

不支持 和 destination (T) 的类型source

适用于

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

Source:
Vector256.cs
Source:
Vector256.cs
Source:
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

属性

例外

不支持 和 destination (T) 的类型source

适用于