The spaceship operator (so named because of its appearance) is used to compare items for sorting in various languages (such as Perl, Ruby, and Groovy). The standard definition is that:
a <=> bis less than zero ifa < ba <=> bis zero ifa == ba <=> bis greater than zero ifa > b
The spaceship operator can also be used to provide default implementations of the <, >, and even == operators if the language (or libraries) is clever enough.