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 like x.x.x

class Version

attr_reader :fst, :snd, :trd
def initialize(version="")
   v = version.split(".")
   @fst = v[0].to_i
   @snd = v[1].to_i
   @trd = v[2].to_i
end

def <=>(other)
  return @fst <=> other.fst if ((@fst <=> other.fst) != 0)
  return @snd <=> other.snd if ((@snd <=> other.snd) != 0)
  return @trd <=> other.trd if ((@trd <=> other.trd) != 0)
end

def self.sort
  self.sort!{|a,b| a <=> b}
end

def to_s
  @sorted = @fst.to_s + "." + @snd.to_s + "." + @trd.to_s
  #puts "#{@sorted}"
end
end
link|improve this question
5  
I don't think that is valid code... – Kevin Sylvestre Mar 31 '11 at 18:29
2  
The OP has indiciated in an "answer" that he meant <=>, so it's a duplicate of Ruby spaceship operator <=> – Andrew Grimm Apr 1 '11 at 1:14
Now I'm wondering why it's only one equals sign. – Andrew Grimm Apr 1 '11 at 1:39
feedback

2 Answers

That is the spaceship operator however it is actually <=>

Although that is not its official name, I'm sure, it's the most commonly used name for that operator. It is a comparison operator where

if other is less than self, then return 1,
if other is equal to self, return 0
if other is greater then self, return -1

It is a powerful operator in that by just implementing this you can do sorting of your type and participate in a lot of other niceties, like the Enumerable mixin

link|improve this answer
feedback

Why don't you just try it out? By just typing in the code you posted, it is trivial to see for yourself that it doesn't mean anything, since <==> is not a valid method name in Ruby. The code you posted will just raise a SyntaxError.

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.