Module: Equalizer::Methods
- Defined in:
- lib/equalizer.rb
Overview
The comparison methods
Instance Method Summary collapse
-
#==(other) ⇒ Boolean
Compare the object with other object for equivalency.
-
#eql?(other) ⇒ Boolean
Compare the object with other object for equality.
Instance Method Details
#==(other) ⇒ Boolean
Compare the object with other object for equivalency
116 117 118 119 |
# File 'lib/equalizer.rb', line 116 def ==(other) other = coerce(other).first if respond_to?(:coerce, true) other.kind_of?(self.class) && cmp?(__method__, other) end |
#eql?(other) ⇒ Boolean
Compare the object with other object for equality
101 102 103 |
# File 'lib/equalizer.rb', line 101 def eql?(other) instance_of?(other.class) && cmp?(__method__, other) end |