operator + method

Vector4 operator +(
  1. Vector4 other
)

Add two vectors.

Implementation

Vector4 operator +(Vector4 other) => clone()..add(other);