24件ヒット
[1-24件を表示]
(0.013秒)
ライブラリ
- ビルトイン (12)
-
rdoc
/ top _ level (12)
クラス
-
RDoc
:: TopLevel (12)
オブジェクト
- main (12)
キーワード
-
all
_ classes _ and _ modules (12) - using (12)
検索結果
先頭2件
-
RDoc
:: TopLevel . all _ classes _ and _ modules -> [RDoc :: NormalClass | RDoc :: SingleClass | RDoc :: NormalModule] (9520.0) -
RDoc が収集したクラス、モジュールを配列で返します。
...
RDoc が収集したクラス、モジュールを配列で返します。... -
main
. using(module) -> self (132.0) -
引数で指定したモジュールで定義された拡張を有効にします。
...ements_rdoc.html#label-Scope
@param module 有効にするモジュールを指定します。
//emlist[例][ruby]{
module Sloth
refine String do
def downcase
self
end
end
end
"ABC".downcase # => "abc"
using Sloth
"ABC".downcase # => "ABC"
//}
@see Module#refine, Module#using...