# File lib/hashery/openobject.rb, line 145
  def eql?( other )
    case other
    when OpenObject
      @hash.eql?(other.as_hash)
    else
      false
    end
  end