るりまサーチ

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

別のキーワード

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

ライブラリ

キーワード

検索結果

Proc#to_proc -> self (6219.0)

self を返します。

...
self
を返します。

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

Proc#inspect -> String (6124.0)

self の文字列表現を返します。

...
self
の文字列表現を返します。

可能なら self を生成したソースファイル名、行番号を含みます。

//emlist[例][ruby]{
p Proc.new {
t
rue
}.to_s

# => "#<Proc:0x0x401a880c@-:3>"
//}...

Proc#to_s -> String (6124.0)

self の文字列表現を返します。

...
self
の文字列表現を返します。

可能なら self を生成したソースファイル名、行番号を含みます。

//emlist[例][ruby]{
p Proc.new {
t
rue
}.to_s

# => "#<Proc:0x0x401a880c@-:3>"
//}...

Proc#hash -> Integer (118.0)

self のハッシュ値を返します。

...
self
のハッシュ値を返します。...