2件ヒット
[1-2件を表示]
(0.017秒)
ライブラリ
- ビルトイン (1)
-
rdoc
/ top _ level (1)
クラス
-
RDoc
:: TopLevel (1)
オブジェクト
- main (1)
キーワード
-
all
_ classes _ and _ modules (1) - using (1)
検索結果
先頭2件
-
RDoc
:: TopLevel . all _ classes _ and _ modules -> [RDoc :: NormalClass | RDoc :: SingleClass | RDoc :: NormalModule] (28561.0) -
RDoc が収集したクラス、モジュールを配列で返します。
RDoc が収集したクラス、モジュールを配列で返します。 -
main
. using(module) -> self (397.0) -
引数で指定したモジュールで定義された拡張を有効にします。
引数で指定したモジュールで定義された拡張を有効にします。
有効にした拡張の有効範囲については以下を参照してください。
* https://docs.ruby-lang.org/en/master/syntax/refinements_rdoc.html#label-Scope
@param module 有効にするモジュールを指定します。
//emlist[例][ruby]{
module Sloth
refine String do
def downcase
self
end
end
end
"ABC".downcase # => "abc"...