class Hash

def deep_transform_values!(&block)

nested hashes and arrays.
This includes the values from the root hash and from all
Destructively converts all values by using the block operation.
def deep_transform_values!(&block)
  _deep_transform_values_in_object!(self, &block)
end