divVector method

Vector<T> divVector(
  1. Vector<T> other
)

Returns a view of the element-wise multiplication of this Vector and other.

Implementation

Vector<T> divVector(Vector<T> other) =>
    binaryOperation(other, dataType.field.div);