Flowdock
method

_deep_transform_values_in_object!

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: Hash
_deep_transform_values_in_object!(object, &block) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/core_ext/hash/deep_transform_values.rb, line 36
    def _deep_transform_values_in_object!(object, &block)
      case object
      when Hash
        object.transform_values! { |value| _deep_transform_values_in_object!(value, &block) }
      when Array
        object.map! { |e| _deep_transform_values_in_object!(e, &block) }
      else
        yield(object)
      end
    end
Register or log in to add new notes.