min method

Vector4D min(
  1. Vector4D o
)

Implementation

Vector4D min(Vector4D o) => .vec4(
  math.min(x, o.x),
  math.min(y, o.y),
  math.min(z, o.z),
  math.min(w, o.w),
);