operator & method

Tensor<bool> operator &(
  1. Tensor<bool> other
)

Implementation

Tensor<bool> operator &(Tensor<bool> other) =>
    binaryOperation<bool, bool>(other, (a, b) => a && b);