operator < method

bool operator <(
  1. Vector3d other
)

Implementation

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