operator - method

Vector<T> operator -(
  1. Vector<T> other
)

Returns a view of this Vector subtracted by other.

Implementation

Vector<T> operator -(Vector<T> other) =>
    binaryOperation(other, dataType.field.sub);