add method

Vector4C add(
  1. Vector4C o
)

Implementation

Vector4C add(Vector4C o) => set(x + o.x, y + o.y, z + o.z, w + o.w);