るりまサーチ (Ruby 2.6.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.018秒)

別のキーワード

  1. csv return_headers?
  2. getoptlong return_in_order
  3. ftp return_code
  4. ftp return_code=
  5. _builtin return_value

ライブラリ

検索結果

TracePoint#return_value -> object (54328.0)

メソッドやブロックの戻り値を返します。

...timeError :return、:c_return、:b_return イベントのためのイベ
ントフックの外側で実行した場合に発生します。

//emlist[例][ruby]{
def foo(ret)
ret
end
trace = TracePoint.new(:return) do |tp|
p tp.return_value # => 1
end
trace.enable
foo 1
//}...