# File lib/hashery/core_ext.rb, line 11
  def self.create(initial_hash={}, &block)
    o = new &block
    o.update(initial_hash)
    o
  end