Class: Hash

Inherits:
Object show all
Defined in:
lib/importu/core_ext/hash/deep_freeze.rb

Instance Method Summary collapse

Instance Method Details

#deep_freezeObject



2
3
4
5
6
# File 'lib/importu/core_ext/hash/deep_freeze.rb', line 2

def deep_freeze
  return self if frozen?
  values.each(&:deep_freeze)
  freeze
end