Vector256.StoreUnsafe Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Sobrecargas
| Name | Description |
|---|---|
| StoreUnsafe<T>(Vector256<T>, T) |
Armazena um vetor no destino indicado. |
| StoreUnsafe<T>(Vector256<T>, T, UIntPtr) |
Armazena um vetor no destino indicado. |
StoreUnsafe<T>(Vector256<T>, T)
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
Armazena um vetor no destino indicado.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector256<T> source, T % destination);
public:
generic <typename T>
where T : value class[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);
public static void StoreUnsafe<T>(this System.Runtime.Intrinsics.Vector256<T> source, ref T destination) where T : struct;
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T> * 'T -> unit
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * 'T -> unit (requires 'T : struct)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector256(Of T), ByRef destination As T)
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector256(Of T), ByRef destination As T)
Parâmetros de Tipo Genérico
- T
O tipo dos elementos no vetor.
Parâmetros
- source
- Vector256<T>
O vetor que será armazenado.
- destination
- T
O destino onde source será armazenado.
Exceções
O tipo de source e destination (T) não é suportado.
Aplica-se a
StoreUnsafe<T>(Vector256<T>, T, UIntPtr)
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
- Origem:
- Vector256.cs
Importante
Esta API não está em conformidade com CLS.
Armazena um vetor no destino indicado.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void StoreUnsafe(System::Runtime::Intrinsics::Vector256<T> source, T % destination, UIntPtr elementOffset);
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);
[System.CLSCompliant(false)]
public static void StoreUnsafe<T>(this System.Runtime.Intrinsics.Vector256<T> source, ref 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)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T> * 'T * unativeint -> unit
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * 'T * unativeint -> unit (requires 'T : struct)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector256(Of T), ByRef destination As T, elementOffset As UIntPtr)
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector256(Of T), ByRef destination As T, elementOffset As UIntPtr)
Parâmetros de Tipo Genérico
- 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 do vetor será armazenado.
- elementOffset
-
UIntPtr
unativeint
O elemento deslocado em relação destination ao qual o vetor será armazenado.
- Atributos
Exceções
O tipo de source e destination (T) não é suportado.