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
<=>, so it's a duplicate of Ruby spaceship operator <=> – Andrew Grimm Apr 1 '11 at 1:14