Is there a std::less/std::greater for the spaceship operator?

1.1k Views Asked by At

All the basic comparisons (<, <=, ==, !=, >=, >) have an associated function object (std::less, std::less_equal, std::equal_to, std::not_equal_to, std::greater_equal, std::greater).

Does the spaceship operator <=> have a similar function object? If not, why was it not added to the standard library?

1

There are 1 best solutions below

3
On BEST ANSWER

std::compare_three_way is the function object for three-way comparison (aka. spaceship operator).