924件ヒット
[1-100件を表示]
(0.068秒)
ライブラリ
-
irb
/ context (756) -
irb
/ ext / history (24) -
irb
/ ext / math-mode (12) -
irb
/ ext / save-history (60) -
irb
/ ext / tracer (36) -
irb
/ ext / use-loader (36)
キーワード
-
_ _ inspect _ _ (12) -
_ _ to _ s _ _ (12) -
ap
_ name (12) -
ap
_ name= (12) -
auto
_ indent _ mode (12) -
auto
_ indent _ mode= (12) -
back
_ trace _ limit (12) -
back
_ trace _ limit= (12) - debug? (12)
-
debug
_ level (12) -
debug
_ level= (12) - echo (12)
- echo= (12)
- echo? (12)
-
eval
_ history (12) -
eval
_ history= (12) - evaluate (12)
- exit (12)
-
file
_ input? (12) -
history
_ file (12) -
history
_ file= (12) -
ignore
_ eof (12) -
ignore
_ eof= (12) -
ignore
_ eof? (12) -
ignore
_ sigint (12) -
ignore
_ sigint= (12) -
ignore
_ sigint? (12) -
init
_ save _ history (12) - inspect (12)
- inspect? (12)
-
inspect
_ mode (12) -
inspect
_ mode= (12) - io (12)
- io= (12)
- irb (12)
- irb= (12)
-
irb
_ name (12) -
irb
_ name= (12) -
irb
_ path (12) -
irb
_ path= (12) -
last
_ value (12) -
load
_ modules (12) - main (12)
- math? (4)
-
math
_ mode (4) -
math
_ mode= (4) -
prompt
_ c (12) -
prompt
_ c= (12) -
prompt
_ i (12) -
prompt
_ i= (12) -
prompt
_ mode (12) -
prompt
_ mode= (12) -
prompt
_ n (12) -
prompt
_ n= (12) -
prompt
_ s (12) -
prompt
_ s= (12) - prompting? (12)
- rc (12)
- rc? (12)
-
return
_ format (12) -
return
_ format= (12) -
save
_ history (12) -
save
_ history= (12) -
set
_ last _ value (12) - thread (12)
-
to
_ s (12) -
use
_ loader (12) -
use
_ loader= (12) -
use
_ loader? (12) -
use
_ readline (12) -
use
_ readline? (12) -
use
_ tracer (12) -
use
_ tracer= (12) -
use
_ tracer? (12) - verbose (12)
- verbose= (12)
- verbose? (12)
- workspace (12)
- workspace= (12)
検索結果
先頭5件
-
IRB
:: Context # _ _ inspect _ _ -> String (2.0) -
自身を文字列表現にしたオブジェクトを返します。
自身を文字列表現にしたオブジェクトを返します。 -
IRB
:: Context # _ _ to _ s _ _ -> String (2.0) -
自身を文字列表現にしたオブジェクトを返します。
自身を文字列表現にしたオブジェクトを返します。 -
IRB
:: Context # ap _ name -> String (2.0) -
自身のアプリケーション名を返します。
...自身のアプリケーション名を返します。
デフォルト値は "irb" です。
@see IRB::Context#ap_name=... -
IRB
:: Context # ap _ name=(val) (2.0) -
自身のアプリケーション名を val に設定します。
...自身のアプリケーション名を val に設定します。
.irbrc ファイル中で IRB.conf[:AP_NAME] を設定する事でも同様の操作が行え
ます。
@param val アプリケーション名を String で指定します。
@see IRB::Context#ap_name... -
IRB
:: Context # auto _ indent _ mode -> bool (2.0) -
入力が次の行に継続した時に自動で字下げを行うかどうかを返します。
...入力が次の行に継続した時に自動で字下げを行うかどうかを返します。
デフォルト値は false です。
@return 自動で字下げを行う場合は true を返します。行わない場合は false
を返します。
@see IRB::Context#auto_indent_mode=... -
IRB
:: Context # auto _ indent _ mode=(val) (2.0) -
入力が次の行に継続した時に自動で字下げを行うかどうかを val に設定します。
...します。
@param val true を指定した場合、自動で字下げを行います。false を指定し
た場合は自動で字下げを行いません。
IRB::Context#prompt_mode の変更に影響を受ける事に注意してください。
@see IRB::Context#auto_indent_mode... -
IRB
:: Context # back _ trace _ limit -> Integer (2.0) -
エラー発生時のバックトレース表示の先頭、末尾の上限の行数を返します。
...エラー発生時のバックトレース表示の先頭、末尾の上限の行数を返します。
デフォルト値は 16 です。
@see IRB::Context#back_trace_limit=... -
IRB
:: Context # back _ trace _ limit=(val) (2.0) -
エラー発生時のバックトレース表示の先頭、末尾の上限の行数をそれぞれ val 行に設定します。
...ぞれ val
行に設定します。
.irbrc ファイル中で IRB.conf[:BACK_TRACE_LIMIT] を設定する事でも同様の
操作が行えます。
@param val バックトレース表示の先頭、末尾の上限を Integer で指定
します。
@see IRB::Context#back_trace_limit... -
IRB
:: Context # debug? -> bool (2.0) -
irb がデバッグモード(IRB::Context#debug_level が 1 以上)で動作し ているかどうかを返します。
...irb がデバッグモード(IRB::Context#debug_level が 1 以上)で動作し
ているかどうかを返します。
デフォルト値は false です。
@see IRB::Context#debug_level, IRB::Context#debug_level=...