instance method
transform_keys
Ruby on Rails 4.2.9
Since v4.0.13 Last seen in v5.2.8.1Signature
transform_keys()
Returns 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
return enum_for(:transform_keys) unless block_given?
result = self.class.new
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