Vector512.BitwiseAnd<T>(Vector512<T>, Vector512<T>) メソッド

定義

2 つのベクトルのビットごとの計算を行います。

public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector512<T> BitwiseAnd(System::Runtime::Intrinsics::Vector512<T> left, System::Runtime::Intrinsics::Vector512<T> right);
public static System.Runtime.Intrinsics.Vector512<T> BitwiseAnd<T>(System.Runtime.Intrinsics.Vector512<T> left, System.Runtime.Intrinsics.Vector512<T> right);
static member BitwiseAnd : System.Runtime.Intrinsics.Vector512<'T> * System.Runtime.Intrinsics.Vector512<'T> -> System.Runtime.Intrinsics.Vector512<'T>
Public Function BitwiseAnd(Of T) (left As Vector512(Of T), right As Vector512(Of T)) As Vector512(Of T)

型パラメーター

T

ベクター内の要素の型。

パラメーター

left
Vector512<T>

rightとビット単位でANDするベクター。

right
Vector512<T>

leftとビット単位でANDするベクター。

返品

ビットごとの leftright

例外

leftright (T) の種類はサポートされていません。

適用対象