Sha256: b953216292de1ab1b0329e1524765673910bc9728bd7e5342712c2d1ea4f89b1

Contents?: true

Size: 1.42 KB

Versions: 69

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

69 entries across 65 versions & 9 rubygems

Version Path
activesupport-6.1.7.10 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.1.7.9 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.1.7.8 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.1.7.7 lib/active_support/core_ext/hash/deep_transform_values.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/core_ext/hash/deep_transform_values.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.3.1/lib/active_support/core_ext/hash/deep_transform_values.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.1.7.6 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.1.7.5 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.1.7.4 lib/active_support/core_ext/hash/deep_transform_values.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/core_ext/hash/deep_transform_values.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/hash/deep_transform_values.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-7.0.3.1/lib/active_support/core_ext/hash/deep_transform_values.rb
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/hash/deep_transform_values.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/activesupport-7.0.4.3/lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-7.0.4.3 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.1.7.3 lib/active_support/core_ext/hash/deep_transform_values.rb
rubypitaya-3.12.4 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-6.1.7.2 lib/active_support/core_ext/hash/deep_transform_values.rb
activesupport-7.0.4.2 lib/active_support/core_ext/hash/deep_transform_values.rb