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