operator < method

bool operator <(
  1. Vector3i other
)

Implementation

bool operator <(Vector3i other) {
  return (X < other.X) || (Y < other.Y) || (X < other.Z);
}