module Quarter

Public Instance Methods

<=>(other) click to toggle source
# File doc/extending_behavior.in.rb, line 47
def <=>(other)
  Type! other, Quarter
  [year, season] <=> [other.year, other.season]
end