# File lib/hashery/openobject.rb, line 112
  def is_a?(klass)
    return true if klass == Hash  # TODO: Is this wise? How to fake a subclass?
    return true if klass == OpenObject
    false
  end