Vector64.LoadUnsafe メソッド

定義

オーバーロード

LoadUnsafe<T>(T, UIntPtr)

指定されたソースと要素のオフセットからベクターを読み込みます。

LoadUnsafe<T>(T)

指定されたソースからベクターを読み込みます。

LoadUnsafe<T>(T, UIntPtr)

ソース:
Vector64.cs
ソース:
Vector64.cs
ソース:
Vector64.cs

重要

この API は CLS 準拠ではありません。

指定されたソースと要素のオフセットからベクターを読み込みます。

public:
generic <typename T>
 where T : value class static System::Runtime::Intrinsics::Vector64<T> LoadUnsafe(T % source, UIntPtr elementOffset);
public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector64<T> LoadUnsafe(T % source, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector64<T> LoadUnsafe<T> (ref T source, UIntPtr elementOffset) where T : struct;
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector64<T> LoadUnsafe<T> (ref T source, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member LoadUnsafe : 'T * unativeint -> System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> (requires 'T : struct)
[<System.CLSCompliant(false)>]
static member LoadUnsafe : 'T * unativeint -> System.Runtime.Intrinsics.Vector64<'T>
Public Function LoadUnsafe(Of T As Structure) (ByRef source As T, elementOffset As UIntPtr) As Vector64(Of T)
Public Function LoadUnsafe(Of T) (ByRef source As T, elementOffset As UIntPtr) As Vector64(Of T)

型パラメーター

T

ベクター内の要素の型。

パラメーター

source
T

ベクターを elementOffset 読み込む前に追加されるソース。

elementOffset
UIntPtr

unativeint

ベクターの読み込み元 source の要素オフセット。

戻り値

から読み込まれた source ベクターに と を加えた elementOffsetもの。

属性

例外

source の型 (T) がサポートされていません。

適用対象

LoadUnsafe<T>(T)

ソース:
Vector64.cs
ソース:
Vector64.cs
ソース:
Vector64.cs

指定されたソースからベクターを読み込みます。

public:
generic <typename T>
 where T : value class static System::Runtime::Intrinsics::Vector64<T> LoadUnsafe(T % source);
public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector64<T> LoadUnsafe(T % source);
public static System.Runtime.Intrinsics.Vector64<T> LoadUnsafe<T> (ref T source) where T : struct;
public static System.Runtime.Intrinsics.Vector64<T> LoadUnsafe<T> (ref T source);
static member LoadUnsafe : 'T -> System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> (requires 'T : struct)
static member LoadUnsafe : 'T -> System.Runtime.Intrinsics.Vector64<'T>
Public Function LoadUnsafe(Of T As Structure) (ByRef source As T) As Vector64(Of T)
Public Function LoadUnsafe(Of T) (ByRef source As T) As Vector64(Of T)

型パラメーター

T

ベクター内の要素の型。

パラメーター

source
T

ベクターの読み込み元となるソース。

戻り値

から source読み込まれたベクター。

例外

source の型 (T) がサポートされていません。

適用対象