# File lib/hashery/basicstruct.rb, line 130
  def ==( other )
    case other
    when BasicObject
      @table == other.as_hash
    when Hash
      @table == other
    else
      if other.respond_to?(:to_hash)
        @table == other.to_hash
      else
        false
      end
    end
  end