Share via


Tensor.BitwiseOrAssignment Operator

Definition

Overloads

Name Description
BitwiseOrAssignment(TScalar)

Performs in-place bitwise-or between a tensor and scalar.

BitwiseOrAssignment(ReadOnlyTensorSpan<TScalar>)

Performs in-place bitwise-or between two tensors.

BitwiseOrAssignment(TScalar)

Source:
Tensor.cs

Performs in-place bitwise-or between a tensor and scalar.

public:
 void op_BitwiseOrAssignment(TScalar other);
public void op_BitwiseOrAssignment(TScalar other);
member this.op_BitwiseOrAssignment : 'TScalar -> unit
Public op_BitwiseOrAssignment (other As TScalar)

Parameters

other
TScalar

The scalar to bitwise-or with the tensor being operated on.

Applies to

BitwiseOrAssignment(ReadOnlyTensorSpan<TScalar>)

Source:
Tensor.cs

Performs in-place bitwise-or between two tensors.

public:
 void op_BitwiseOrAssignment(System::Numerics::Tensors::ReadOnlyTensorSpan<TScalar> % other);
public void op_BitwiseOrAssignment(in System.Numerics.Tensors.ReadOnlyTensorSpan<TScalar> other);
member this.op_BitwiseOrAssignment : ReadOnlyTensorSpan -> unit
Public op_BitwiseOrAssignment (ByRef other As ReadOnlyTensorSpan(Of TScalar))

Parameters

other
ReadOnlyTensorSpan<TScalar>

The tensor to bitwise-or with the tensor being operated on.

Applies to