max method

Vector4D max(
  1. Vector4D o
)

Implementation

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