Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jrubyでブロックをラムダに変換するにはどうすればよいですか?基本的にこれに対するjrubyの答えは何ですか:Ruby:procをlambdaに変換しますか??
jruby 1.9を互換性のある方法で実行している限り(たとえばjruby --1.9 -S irb)、同じである必要があります。
jruby --1.9 -S irb
my_proc = proc { |x| x } my_lambda = lambda &my_proc my_lambda.lambda? # => true