max method

V2 max(
  1. V2 o
)

Implementation

V2 max(V2 o) => _v2(
  math.max(x, o.x),
  math.max(y, o.y),
);