Я ищу более краткий способ передачи #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
Есть ли?