I was browsing cppreference and saw that vector's comparison operations have been removed in C++20, and the spaceship operator (<=>) has been introduced. The same thing can be seen for many other standard library containers like set and map.
How do I do the comparisons in the new standard? Also, will C++20 start giving errors on older code?