Tensor.BitwiseOr メソッド

定義

オーバーロード

名前 説明
BitwiseOr<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

ビット単位または 2 つのテンソルの間で実行します。

BitwiseOr<T>(ReadOnlyTensorSpan<T>, T)

テンソルとスカラーの間でビット単位またはビット単位で実行します。

BitwiseOr<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)

ビット単位または 2 つのテンソルの間で実行します。

BitwiseOr<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)

テンソルとスカラーの間でビット単位またはビット単位で実行します。

BitwiseOr<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

ソース:
Tensor.op_BitwiseOr.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_BitwiseOr.cs

ビット単位または 2 つのテンソルの間で実行します。

public:
generic <typename T>
 where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ BitwiseOr(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> BitwiseOr<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member BitwiseOr : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function BitwiseOr(Of T As IBitwiseOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)

型パラメーター

T

テンソル内の要素の型。

パラメーター

x
ReadOnlyTensorSpan<T>

ビットごとのテンソルまたは yを使用するテンソル。

y
ReadOnlyTensorSpan<T>

ビットごとのテンソルまたは xを使用するテンソル。

返品

x | yの結果を含む新しいテンソル。

例外

xyの図形は互換性がありません。

適用対象

BitwiseOr<T>(ReadOnlyTensorSpan<T>, T)

ソース:
Tensor.op_BitwiseOr.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_BitwiseOr.cs

テンソルとスカラーの間でビット単位またはビット単位で実行します。

public:
generic <typename T>
 where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ BitwiseOr(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static System.Numerics.Tensors.Tensor<T> BitwiseOr<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member BitwiseOr : ReadOnlyTensorSpan * 'T -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function BitwiseOr(Of T As IBitwiseOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T) As Tensor(Of T)

型パラメーター

T

テンソル内の要素の型。

パラメーター

x
ReadOnlyTensorSpan<T>

ビットごとのテンソルまたは yを使用するテンソル。

y
T

ビットごとのスカラーまたは xを使用するスカラー。

返品

x | yの結果を含む新しいテンソル。

適用対象

BitwiseOr<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)

ソース:
Tensor.op_BitwiseOr.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_BitwiseOr.cs

ビット単位または 2 つのテンソルの間で実行します。

public:
generic <typename T>
 where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ BitwiseOr(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> BitwiseOr<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member BitwiseOr : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function BitwiseOr(Of T As IBitwiseOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

型パラメーター

T

テンソル内の要素の型。

パラメーター

x
ReadOnlyTensorSpan<T>

ビットごとのテンソルまたは yを使用するテンソル。

y
ReadOnlyTensorSpan<T>

ビットごとのテンソルまたは xを使用するテンソル。

destination
TensorSpan<T>

x | yの結果が書き込まれる宛先。

返品

destination への参照です。

例外

xy、およびdestinationの図形には互換性がありません。

適用対象

BitwiseOr<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)

ソース:
Tensor.op_BitwiseOr.cs
ソース:
TensorExtensions.cs
ソース:
Tensor.op_BitwiseOr.cs

テンソルとスカラーの間でビット単位またはビット単位で実行します。

public:
generic <typename T>
 where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ BitwiseOr(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> BitwiseOr<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member BitwiseOr : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function BitwiseOr(Of T As IBitwiseOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

型パラメーター

T

テンソル内の要素の型。

パラメーター

x
ReadOnlyTensorSpan<T>

ビットごとのテンソルまたは yを使用するテンソル。

y
T

ビットごとのスカラーまたは xを使用するスカラー。

destination
TensorSpan<T>

x | yの結果が書き込まれる宛先。

返品

destination への参照です。

例外

xdestinationの図形は互換性がありません。

適用対象