Method: RiCal::PropertyValue#==

Defined in:
lib/ri_cal/property_value.rb

#==(o) ⇒ Object

Determine if another object is equivalent to the receiver.



76
77
78
79
80
81
82
# File 'lib/ri_cal/property_value.rb', line 76

def ==(o)
  if o.class == self.class
    equality_value == o.equality_value
  else
    super
  end
end