るりまサーチ

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

別のキーワード

  1. fiddle ruby_free
  2. rbconfig ruby
  3. fiddle build_ruby_platform
  4. rake ruby
  5. rubygems/defaults ruby_engine

ライブラリ

クラス

検索結果

TracePoint#return_value -> object (24213.0)

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

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

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