module CBOR::PP::EqlMixin

Public Instance Methods

eql?(other) click to toggle source
Calls superclass method
# File lib/cbor-pp.rb, line 113
def eql?(other)
  if other.respond_to? :__getobj__
    eql? other.__getobj__
  else
    super
  end
end