# File lib/whois/record/super_struct.rb, line 43
  def initialize(*args)
    if args.first.is_a? Hash
      initialize_with_hash(args.first)
    else
      super
    end
    yield(self) if block_given?
  end