C++ spaceship operator multilevel compare?

432 Views Asked by At

Does the new C++20 spaceship operator allow a concise way of expressing short-circuited multiple-criteria comparison? Something better than this:

const firstCriteriaComparisonResult = lhs.x <=> rhs.x;
return firstCriteriaComparisonResult != 0 ? firstCriteriaComparisonResult : lhs.y <=> rhs.y;
1

There are 1 best solutions below

1
On BEST ANSWER

The usual tie-and-compare approach works with spaceship too:

return std::tie(lhs.x, lhs.y) <=> std::tie(rhs.x, rhs.y);