min method
V4
min(
- V4 o
Implementation
V4 min(V4 o) => _v4(
math.min(x, o.x),
math.min(y, o.y),
math.min(z, o.z),
math.min(w, o.w),
);
V4 min(V4 o) => _v4(
math.min(x, o.x),
math.min(y, o.y),
math.min(z, o.z),
math.min(w, o.w),
);