# File lib/hashery/ostructable.rb, line 63
  def initialize(hash=nil)
    @__table__ = {}
    if hash
      for k,v in hash
        __table__[k.to_sym] = v
        new_ostruct_member(k)
      end
    end
  end