instance method
transform_keys
Ruby on Rails 4.0.13
Since v4.0.13 Last seen in v5.2.8.1Signature
transform_keys()
Return a new hash with all keys converted using the block operation.
hash = { name: 'Rob', age: '28' } hash.transform_keys{ |key| key.to_s.upcase } # => { "NAME" => "Rob", "AGE" => "28" }
Source
# File activesupport/lib/active_support/core_ext/hash/keys.rb, line 8
def transform_keys
result = {}
each_key do |key|
result[yield(key)] = self[key]
end
result
end
Defined in activesupport/lib/active_support/core_ext/hash/keys.rb line 8
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Hash