Method: Hash#deep_transform_values!

Defined in:
activesupport/lib/active_support/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.



19
20
21
# File 'activesupport/lib/active_support/core_ext/hash/deep_transform_values.rb', line 19

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