operator <= method

Tensor<bool> operator <=(
  1. Tensor<T> other
)

Implementation

Tensor<bool> operator <=(Tensor<T> other) =>
    binaryOperation<T, bool>(other, type.comparator.lessThanOrEqualTo);