# File lib/hashery/basicstruct.rb, line 45
  def initialize(hash=nil, &yld)
    @table = Hash.new(&yld)
    if hash
      hash.each{ |k,v| store(k,v) }
    end
  end