Method: Runt::REYear#==

Defined in:
lib/runt/temporalexpression.rb

#==(o) ⇒ Object



559
560
561
# File 'lib/runt/temporalexpression.rb', line 559

def ==(o)
  o.is_a?(REYear) ? start_day == o.start_day && end_day == o.end_day && start_month == o.start_month && end_month == o.end_month : super(o)
end