Vector128.StoreUnsafe 方法

定义

重载

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

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

StoreUnsafe<T>(Vector128<T>, T)

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

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

Source:
Vector128.cs
Source:
Vector128.cs
Source:
Vector128.cs

重要

此 API 不符合 CLS。

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

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)

类型参数

T

向量中的元素的类型。

参数

source
Vector128<T>

要存储的向量。

destination
T

在存储向量之前,将向其添加 elementOffset 的目标。

elementOffset
UIntPtr

unativeint

从中存储向量 destination 的元素偏移量。

属性

例外

不支持 source 类型(T)。

适用于

StoreUnsafe<T>(Vector128<T>, T)

Source:
Vector128.cs
Source:
Vector128.cs
Source:
Vector128.cs

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

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)

类型参数

T

向量中的元素的类型。

参数

source
Vector128<T>

要存储的向量。

destination
T

将存储 source 的目标。

例外

不支持 source 类型(T)。

适用于