Sha256: 98d1f8f9b3449c87948ed183de3f049ac16c3ceb909d27dbdfcc41288a7a14ec

Contents?: true

Size: 1.05 KB

Versions: 23

Compression:

Stored size: 1.05 KB

Contents

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

23 entries across 23 versions & 3 rubygems

Version Path
activesupport-5.1.7 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.7.rc1 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.6.2 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.6.1 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.6 lib/active_support/core_ext/hash/transform_values.rb
tdiary-5.0.8 vendor/bundle/gems/activesupport-5.1.5/lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.5 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.5.rc1 lib/active_support/core_ext/hash/transform_values.rb
pract6-0.1.0 .gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.4 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.4.rc1 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.3 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.3.rc3 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.3.rc2 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.3.rc1 lib/active_support/core_ext/hash/transform_values.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.2 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.2.rc1 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.1 lib/active_support/core_ext/hash/transform_values.rb
activesupport-5.1.0 lib/active_support/core_ext/hash/transform_values.rb