48件ヒット
[1-48件を表示]
(0.008秒)
種類
- 特異メソッド (36)
- インスタンスメソッド (12)
モジュール
-
IRB
:: ContextExtender (12) -
IRB
:: ExtendCommandBundle (36)
キーワード
-
def
_ extend _ command (24) -
install
_ alias _ method (12) -
irb
_ original _ method _ name (12)
検索結果
先頭4件
- IRB
:: ExtendCommandBundle # install _ alias _ method(to , from , override = NO _ OVERRIDE) - IRB
:: ContextExtender . def _ extend _ command(cmd _ name , load _ file , *aliases) -> object - IRB
:: ExtendCommandBundle . def _ extend _ command(cmd _ name , cmd _ class , load _ file = nil , *aliases) -> object - IRB
:: ExtendCommandBundle . irb _ original _ method _ name(method _ name) -> String
-
IRB
:: ExtendCommandBundle # install _ alias _ method(to , from , override = NO _ OVERRIDE) (6103.0) -
メソッドのエイリアスを定義します。ライブラリ内部で使用します。
メソッドのエイリアスを定義します。ライブラリ内部で使用します。
@param to 新しいメソッド名を Symbol か文字列で指定します。
@param from 元のメソッド名を Symbol か文字列で指定します。
@param override 新しいメソッド名が定義済みであった場合にそのメソッドを
上書きするかどうかを
IRB::ExtendCommandBundle::NO_OVERRIDE、
IRB::ExtendCommandBundle::OVERRIDE_PRIVATE_... -
IRB
:: ContextExtender . def _ extend _ command(cmd _ name , load _ file , *aliases) -> object (102.0) -
IRB::Context に cmd_name で指定したメソッドが実行できるように拡張 します。
...す。
@param load_file cmd_name で指定したメソッドが定義されたファイル名を指
定します。このファイルは自動的に require されます。
@param aliases cmd_name の別名を Symbol で指定します。複数指定する事ができます。... -
IRB
:: ExtendCommandBundle . def _ extend _ command(cmd _ name , cmd _ class , load _ file = nil , *aliases) -> object (102.0) -
irb に cmd_name で指定したメソッドが実行できるように拡張します。
...ソッドが定義されたファイル名を指
定します。このファイルは自動的に require されます。
@param aliases cmd_name の別名を Symbol とフラグの配列で指定しま
す。複数指定する事ができます。フラグは... -
IRB
:: ExtendCommandBundle . irb _ original _ method _ name(method _ name) -> String (8.0) -
method_name で指定したメソッドの irb 中でのエイリアスを返します。ライブ ラリ内部で使用します。
...method_name で指定したメソッドの irb 中でのエイリアスを返します。ライブ
ラリ内部で使用します。
@param method_name メソッド名を Symbol か文字列で指定します。
@see IRB::ExtendCommandBundle#install_alias_method...