# File lib/choice/lazyhash.rb, line 21 def initialize(hash = nil) hash.each { |key, value| self[key] = value } if !hash.nil? && hash.is_a?(Hash) end