What is the Ruby spaceship operator? Is the operator implemented by any other languages?
|
feedback
|
|
Perl was the first language to use it. Groovy is another language that supports it. Basically instead of returning 1 (true) or 0 (false) depending on whether the arguments are equal or unequal, the spaceship operator will return 1, 0, or −1 depending on the value of the left argument relative to the right argument. a<=>b if a < b it returns -1 if a = b it returns 0 if a > b it returns 1 It's useful for sorting an array. | |||||||||
feedback
|
|
It's a general comparison operator. It returns either a -1, 0, or +1 depending on whether its receiver is less than, equal to, or greater than its argument. | |||
|
feedback
|
[1,3,2] <=> [2,2,2]? – SF. Apr 16 '10 at 10:22