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 ...
27
votes
2answers
3k views
Ruby spaceship operator <=>
What is the Ruby spaceship operator? Is the operator implemented by any other languages?
9
votes
5answers
4k views
Understanding ruby array sort
I am having a problem understanding how array.sort{|x,y| block} works exactly,hence how to use it?
ruby-doc example:
a = [ "d", "a", "e", "c", "b" ]
a.sort #=> ["a", "b", ...
6
votes
3answers
74 views
Difference between <=> and == in Ruby?
What are their differences? Coming from a Java background, it does seem to me <=> is the same as Java's equals(), while == is for direct reference comparison. Is this right?
6
votes
3answers
492 views
When is the spaceship operator used outside a sort?
This is a best practice question.
I've only seen the Perl spaceship operator (<=>) used in numeric sort routines. But it seems useful in other situations. I just can't think of a practical use.
...
5
votes
2answers
272 views
Why does the spaceship operator have only one equal sign in it?
Why was the spaceship operator <=> chosen to have one equal sign rather than two? Is this seen as inconsistent with one equal sign usually meaning assignment, and two meaning comparison?
5
votes
3answers
401 views
Impementation of the Ruby <=> Combinator
Not infrequently, one wants to implement the <=> (comparison, or "spaceship") operator on a product data type, i.e., a class with multiple fields (all of which (we hope!) already have <=> ...
2
votes
3answers
129 views
Confused with Ruby's <=> operator
I am confused with Ruby's <=> operator. How does it differ from == or ===? Any comprehensive examples/use case? Thanks.
1
vote
1answer
615 views
Overriding Ruby's spaceship operator <=>
I am trying to override Ruby's <=> (spaceship) operator to sort apples and oranges so that apples come first sorted by weight, and oranges second, sorted by sweetness. Like so:
module Fruity
...
-1
votes
2answers
192 views
What is the meaning of <==> in Ruby
Example
def <==>(other)
# some code here
end
Update
The code comes from the fallowing class that compares numbers in the format x.x.x
The code comes from this class that orders numbers ...