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