Share via


Tensor.BitwiseAndAssignment Operator

Definition

Overloads

Name Description
BitwiseAndAssignment(TScalar)

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

BitwiseAndAssignment(ReadOnlyTensorSpan<TScalar>)

Performs in-place bitwise-and between two tensors.

BitwiseAndAssignment(TScalar)

Source:
Tensor.cs

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

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

Parameters

other
TScalar

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

Applies to

BitwiseAndAssignment(ReadOnlyTensorSpan<TScalar>)

Source:
Tensor.cs

Performs in-place bitwise-and between two tensors.

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

Parameters

other
ReadOnlyTensorSpan<TScalar>

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

Applies to