Returns a new vector of greater dimension by copying elements and appending values from other.
Vec2 v1 = [1, 2]; assert(v1 ~ [3f, 4f] == Vec4(1, 2, 3, 4)); assert(v1 ~ Vec2(3f, 4f) == Vec4(1, 2, 3, 4));
See Implementation
Returns a new vector of greater dimension by copying elements and appending values from other.