Method: Hash#deep_transform_values!
- Defined in:
- lib/fancybox2/core_ext/hash.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/fancybox2/core_ext/hash.rb', line 20 def deep_transform_values!(&block) _deep_transform_values_in_object!(self, &block) end |