I am confused with Ruby's <=> operator. How does it differ from == or ===? Any comprehensive examples/use case? Thanks.

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

It's called the 'spaceship' operator. More info: Ruby spaceship operator and http://en.wikipedia.org/wiki/Spaceship_operator

link|improve this answer
how about in this code snippet, this confused me the most. assuming a = [ "d", "a", "e", "c", "b" ] how does this work, exactly? a.sort {|x,y| y <=> x } – arscariosus Jan 20 '11 at 11:02
feedback

<=> is the combined comparison operator. it returns 0 if LHS equals RHS, 1 if LHS is greater than the RHS and -1 if LHS is less than RHs

link|improve this answer
feedback

== will NOT work in sort for example

[3,5,6,2,7].sort{|x,y| x <=>y }

== returns Boolean
<=> returns Fixnum (-1,0,1)

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.