るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.087秒)
トップページ > クエリ:Ruby[x] > 種類:インスタンスメソッド[x] > クエリ:r[x] > クエリ:self[x] > クラス:Proc[x] > クエリ:to_proc[x]

別のキーワード

  1. object yield_self
  2. _builtin yield_self
  3. _builtin self
  4. tracepoint self
  5. codeobject document_self

ライブラリ

検索結果

Proc#to_proc -> self (27332.0)

self を返します。

...
self
を返します。

//emlist[例][ruby]{
pr = proc {}
p pr == pr.to_proc # => true
//}...