operator * method

Tensor<T> operator *(
  1. Tensor<T> other
)

Implementation

Tensor<T> operator *(Tensor<T> other) =>
    binaryOperation<T, T>(other, type.field.mul);