Sha256: ce7836c8630ea561479bf277c8ec466e2e09c85e01211d1d9b12c5d7bd67e95e

Contents?: true

Size: 1.08 KB

Versions: 49

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true

class Hash
  # Returns a new hash with the results of running +block+ once for every value.
  # The keys are unchanged.
  #
  #   { a: 1, b: 2, c: 3 }.transform_values { |x| x * 2 } # => { a: 2, b: 4, c: 6 }
  #
  # If you do not provide a +block+, it will return an Enumerator
  # for chaining with other methods:
  #
  #   { a: 1, b: 2 }.transform_values.with_index { |v, i| [v, i].join.to_i } # => { a: 10, b: 21 }
  def transform_values
    return enum_for(:transform_values) { size } unless block_given?
    return {} if empty?
    result = self.class.new
    each do |key, value|
      result[key] = yield(value)
    end
    result
  end unless method_defined? :transform_values

  # Destructively converts all values using the +block+ operations.
  # Same as +transform_values+ but modifies +self+.
  def transform_values!
    return enum_for(:transform_values!) { size } unless block_given?
    each do |key, value|
      self[key] = yield(value)
    end
  end unless method_defined? :transform_values!
  # TODO: Remove this file when supporting only Ruby 2.4+.
end

Version data entries

49 entries across 49 versions & 8 rubygems

Version Path
activesupport-5.2.8.1 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.8 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.7.1 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.7 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.6.3 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.6.2 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.6.1 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.6 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.4.6 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.5 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.4.5 lib/active_support/core_ext/hash/transform_values.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.4.4 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.4.3 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.4.2 lib/active_support/core_ext/hash/transform_values.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.4.1 lib/active_support/core_ext/hash/transform_values.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.4 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.2.4.rc1 lib/active_support/core_ext/hash/transform_values.rb