644件ヒット
[1-100件を表示]
(0.182秒)
ライブラリ
-
irb
/ context (540) -
irb
/ ext / history (12) -
irb
/ ext / math-mode (8) -
irb
/ ext / save-history (36) -
irb
/ ext / tracer (24) -
irb
/ ext / use-loader (24)
キーワード
-
_ _ inspect _ _ (12) -
_ _ to _ s _ _ (12) -
ap
_ name (12) -
auto
_ indent _ mode (12) -
back
_ trace _ limit (12) - debug? (12)
-
debug
_ level (12) - echo (12)
- echo? (12)
-
eval
_ history (12) - evaluate (12)
- exit (12)
-
file
_ input? (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) - io (12)
- irb (12)
-
irb
_ name (12) -
irb
_ path (12) -
last
_ value (12) -
load
_ modules (12) - main (12)
- math? (4)
-
math
_ mode (4) -
prompt
_ c (12) -
prompt
_ i (12) -
prompt
_ mode (12) -
prompt
_ n (12) -
prompt
_ s (12) - prompting? (12)
- rc (12)
- rc? (12)
-
return
_ format (12) -
save
_ history (12) -
set
_ last _ value (12) - thread (12)
-
to
_ s (12) -
use
_ loader (12) -
use
_ loader? (12) -
use
_ readline (12) -
use
_ readline? (12) -
use
_ tracer (12) -
use
_ tracer? (12) - verbose (12)
- verbose? (12)
- workspace (12)
検索結果
先頭5件
-
IRB
:: Context # set _ last _ value(value) -> object (9302.0) -
ライブラリ内部で使用します。
ライブラリ内部で使用します。 -
IRB
:: Context # evaluate(line , line _ no) -> object (9202.0) -
ライブラリ内部で使用します。
ライブラリ内部で使用します。 -
IRB
:: Context # thread -> Thread (6302.0) -
現在のスレッドを返します。
...現在のスレッドを返します。
@see Thread.current... -
IRB
:: Context # ignore _ sigint -> bool (6218.0) -
Ctrl-C が入力された時に irb を終了するかどうかを返します。
...Ctrl-C が入力された時に irb を終了するかどうかを返します。
false の時は irb を終了します。true の時は以下のように動作します。
: 入力中
これまで入力したものをキャンセルしトップレベルに戻る.
: 実行中
実行を......中止する.
デフォルト値は true です。
@see IRB::Context#ignore_sigint=... -
IRB
:: Context # ignore _ sigint? -> bool (6218.0) -
Ctrl-C が入力された時に irb を終了するかどうかを返します。
...Ctrl-C が入力された時に irb を終了するかどうかを返します。
false の時は irb を終了します。true の時は以下のように動作します。
: 入力中
これまで入力したものをキャンセルしトップレベルに戻る.
: 実行中
実行を......中止する.
デフォルト値は true です。
@see IRB::Context#ignore_sigint=... -
IRB
:: Context # _ _ inspect _ _ -> String (6202.0) -
自身を文字列表現にしたオブジェクトを返します。
自身を文字列表現にしたオブジェクトを返します。 -
IRB
:: Context # _ _ to _ s _ _ -> String (6202.0) -
自身を文字列表現にしたオブジェクトを返します。
自身を文字列表現にしたオブジェクトを返します。 -
IRB
:: Context # auto _ indent _ mode -> bool (6202.0) -
入力が次の行に継続した時に自動で字下げを行うかどうかを返します。
...入力が次の行に継続した時に自動で字下げを行うかどうかを返します。
デフォルト値は false です。
@return 自動で字下げを行う場合は true を返します。行わない場合は false
を返します。
@see IRB::Context#auto_indent_mode=... -
IRB
:: Context # back _ trace _ limit -> Integer (6202.0) -
エラー発生時のバックトレース表示の先頭、末尾の上限の行数を返します。
...エラー発生時のバックトレース表示の先頭、末尾の上限の行数を返します。
デフォルト値は 16 です。
@see IRB::Context#back_trace_limit=...