るりまサーチ (Ruby 3.2)

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

別のキーワード

  1. objectspace each_object
  2. _builtin each_object
  3. object send
  4. object public_send
  5. object to_enum

ライブラリ

クラス

検索結果

Object#itself -> object (72661.0)

self を返します。

self を返します。

//emlist[][ruby]{
string = 'my string' # => "my string"
string.itself.object_id == string.object_id # => true
//}