Method: Hash#deep_transform_values!

Defined in:
lib/core_ext/hash/deep_transform_values.rb

#deep_transform_values!(&block) ⇒ Object

Destructively converts all values by using the block operation. This includes the values from the root hash and from all nested hashes and arrays.



20
21
22
# File 'lib/core_ext/hash/deep_transform_values.rb', line 20

def deep_transform_values!(&block)
  _deep_transform_values_in_object!(self, &block)
end