Ruby 枚举each_with_object 函数
Ruby中的each_with_object函数是用来遍历给定对象的每个元素。
语法: A.each_with_object({})
这里, A 是初始化的对象。
参数: 这个函数不接受任何参数。
返回: 新的数值集。
例1 :
# Calling the .each_with_object function on an array object
[:gfg, :geeks, :geek].each_with_object({}) do |item, hash|
# Converting the array elements into its uppercase
hash[item] = item.to_s.upcase
end
输出
{:gfg=>"GFG", :geeks=>"GEEKS", :geek=>"GEEK"}
例2 :
# Calling the .each_with_object function on a hash
{ foo: 2, bar: 4, jazz: 6 }.each_with_object({}) do
|(key, value), hash|
# Getting the square of the hash's value
hash[key] = value**2
end
输出
{:foo=>4, :bar=>16, :jazz=>36}