class Date
Public Instance Methods
==(other)
click to toggle source
# File lib/opal/equality_patches.rb, line 3 def ==(other) return false unless other.is_a?(Date) broken_equals(other) end
Also aliased as: broken_equals