将实例方法传递给#each的简便方法

时间:2019-01-23 13:31:44

标签: ruby

我正在寻找一种将#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

有没有?

0 个答案:

没有答案