Sha256: ee23decc1383264db6bd523ffe4c799cd40c4952c6d5799b4f930bc161627af5

Contents?: true

Size: 1.42 KB

Versions: 51

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true

class Hash
  # Returns a new hash with all values converted by the block operation.
  # This includes the values from the root hash and from all
  # nested hashes and arrays.
  #
  #  hash = { person: { name: 'Rob', age: '28' } }
  #
  #  hash.deep_transform_values{ |value| value.to_s.upcase }
  #  # => {person: {name: "ROB", age: "28"}}
  def deep_transform_values(&block)
    _deep_transform_values_in_object(self, &block)
  end

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

  private
    # support methods for deep transforming nested hashes and arrays
    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

    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
end

Version data entries

51 entries across 49 versions & 8 rubygems

Version Path
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/core_ext/hash/deep_transform_values.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.6.1 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.6 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.5.1 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.5 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.4.8 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.4.7 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.4.6 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.4.5 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.4.4 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.4.3 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.4.2 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.4.1 lib/active_support/core_ext/hash/deep_transform_values.rb
mumukit-content-type-1.11.1 vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.4/lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.4 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.3.7 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.3.6 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.3.5 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.0.3.4 lib/active_support/core_ext/hash/deep_transform_values.rb