るりまサーチ

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

別のキーワード

  1. csv return_headers?
  2. getoptlong return_in_order
  3. _builtin return_value
  4. win32ole return_vtype
  5. win32ole return_type

ライブラリ

クラス

検索結果

TracePoint#return_value -> object (18114.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
//}...