About

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 <=> b is less than zero if a < b
  • a <=> b is zero if a == b
  • a <=> b is greater than zero if a > 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.

history|show excerpt|excerpt history