标签: ruby
我正在寻找一种将#func传递给#each的更简洁的方法。
#func
#each
class My def hello input = %w[a b c] input.each(&method(:func)) end private def func(i) puts i end end My.new.hello
有没有?