るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.010秒)
トップページ > クエリ:tap[x] > 種類:文書[x]

別のキーワード

  1. object tap
  2. _builtin tap
  3. tap object
  4. tap _builtin

検索結果

手続きオブジェクトの挙動の詳細 (7.0)

手続きオブジェクトの挙動の詳細 * def * should_use_next * block * lambda_proc * orphan

..._proc }
f.call
return :from_method
end

def test_lambda
f = lambda { return :from_lambda }
f.call
return :from_method
end

def test_block
tap
{ return :from_block }
return :from_method
end

p test_proc() #=> :from_proc
p test_lambda() #=> :from_method
p test_block() #=> :from_block...