min method

V2 min(
  1. V2 o
)

Implementation

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