What is the Ruby spaceship operator? Is the operator implemented by any other languages?

link|improve this question

That's a lame spaceship. – Spencer Ruport May 6 '09 at 1:37
26  
More like an AWESOME spaceship. – Chris Lutz May 6 '09 at 2:01
10  
I approve of this spaceship. – Ryan Bigg May 6 '09 at 5:39
Now what about comparing arrays? It said in the book "compares element by element, returns 0 if equal, -1 if lesser, 1 if greater, but what about [1,3,2] <=> [2,2,2] ? – SF. Apr 16 '10 at 10:22
1  
@SF, when people compare arrays, they usually mean to compare lexicographically (like in a dictionary, i.e. [1,3,2] < [2,2,2] because first elements are different). Rarely (f.e. in Matlab) array comparision returns an array of results per element; in this case: [-1, 1, 0]. – liori Apr 16 '10 at 10:39
feedback

2 Answers

up vote 40 down vote accepted

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.

link|improve this answer
5  
Exactly. I think of it as a very elegant version of Java's Comparable. – Mike Reedell May 6 '09 at 12:42
4  
analog in c# is IComparable.CompareTo – Sergey Mirvoda Aug 7 '09 at 6:21
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.