operator + method

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

Returns a view of this Vector added to other.

Implementation

Vector<T> operator +(Vector<T> other) =>
    binaryOperation(other, dataType.field.add);