Vector256.StoreUnsafe Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
StoreUnsafe<T>(Vector256<T>, T) |
Armazena um vetor no destino especificado. |
StoreUnsafe<T>(Vector256<T>, T, UIntPtr) |
Armazena um vetor no destino especificado. |
StoreUnsafe<T>(Vector256<T>, T)
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
Armazena um vetor no destino especificado.
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)
Parâmetros de tipo
- T
O tipo dos elementos no vetor.
Parâmetros
- source
- Vector256<T>
O vetor que será armazenado.
- destination
- T
O destino no qual source
será armazenado.
Exceções
Não há suporte para o tipo de source
e destination
(T
).
Aplica-se a
StoreUnsafe<T>(Vector256<T>, T, UIntPtr)
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
Importante
Esta API não está em conformidade com CLS.
Armazena um vetor no destino especificado.
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)
Parâmetros de tipo
- T
O tipo dos elementos no vetor.
Parâmetros
- source
- Vector256<T>
O vetor que será armazenado.
- destination
- T
O destino ao qual elementOffset
será adicionado antes que o vetor seja armazenado.
- elementOffset
-
UIntPtr
unativeint
O deslocamento de elemento de destination
do qual o vetor será armazenado.
- Atributos
Exceções
Não há suporte para o tipo de source
e destination
(T
).