Vector64.AndNot<T>(Vector64<T>, Vector64<T>) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
特定のベクターのビットごとの と、別のベクターの補数を計算します。
public:
generic <typename T>
where T : value class static System::Runtime::Intrinsics::Vector64<T> AndNot(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
public:
generic <typename T>
static System::Runtime::Intrinsics::Vector64<T> AndNot(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
public static System.Runtime.Intrinsics.Vector64<T> AndNot<T> (System.Runtime.Intrinsics.Vector64<T> left, System.Runtime.Intrinsics.Vector64<T> right) where T : struct;
public static System.Runtime.Intrinsics.Vector64<T> AndNot<T> (System.Runtime.Intrinsics.Vector64<T> left, System.Runtime.Intrinsics.Vector64<T> right);
static member AndNot : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> (requires 'T : struct)
static member AndNot : System.Runtime.Intrinsics.Vector64<'T> * System.Runtime.Intrinsics.Vector64<'T> -> System.Runtime.Intrinsics.Vector64<'T>
Public Function AndNot(Of T As Structure) (left As Vector64(Of T), right As Vector64(Of T)) As Vector64(Of T)
Public Function AndNot(Of T) (left As Vector64(Of T), right As Vector64(Of T)) As Vector64(Of T)
型パラメーター
- T
ベクター内の要素の型。
パラメーター
- left
- Vector64<T>
と を使用 right
したビットごとの および へのベクター。
- right
- Vector64<T>
ビットごとの left
と を使用する前に、1 で補完される へのベクター。
戻り値
のビットごとの と left
と の 1 の補数 right
。
例外
と right
(T
) のleft
型はサポートされていません。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET