标签: ruby
有没有更好的方法来写类似的东西:
array.each { |item| method(item) }
我知道array.each(&:method)会在每个项目上调用方法 ,但是是否有类似的速记用于在每个项目上调用方法 ?< / p>
array.each(&:method)