るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.259秒)
トップページ > バージョン:2.1.0[x] > クエリ:_builtin[x] > クエリ:==[x] > クエリ:to_proc[x]

別のキーワード

  1. _builtin new
  2. _builtin inspect
  3. _builtin []
  4. _builtin to_s
  5. _builtin each

ライブラリ

クラス

検索結果

Proc#to_proc -> self (78340.0)

self を返します。

self を返します。

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