296件ヒット
[1-100件を表示]
(0.052秒)
種類
- インスタンスメソッド (272)
- 特異メソッド (12)
- 定数 (12)
ライブラリ
-
irb
/ context (252) -
irb
/ ext / math-mode (8) -
irb
/ ext / use-loader (36)
キーワード
-
IDNAME
_ IVARS (12) -
auto
_ indent _ mode (12) -
auto
_ indent _ mode= (12) - debug? (12)
-
debug
_ level (12) -
debug
_ level= (12) -
ignore
_ eof (12) -
ignore
_ eof= (12) -
ignore
_ eof? (12) -
inspect
_ mode (12) -
inspect
_ mode= (12) - io (12)
-
load
_ modules (12) -
math
_ mode (4) -
math
_ mode= (4) - new (12)
-
prompt
_ mode (12) -
prompt
_ mode= (12) -
return
_ format (12) -
return
_ format= (12) - thread (12)
-
use
_ loader (12) -
use
_ loader= (12) -
use
_ loader? (12) -
use
_ readline (12) -
use
_ readline? (12)
検索結果
先頭5件
-
IRB
:: Context # auto _ indent _ mode -> bool (12201.0) -
入力が次の行に継続した時に自動で字下げを行うかどうかを返します。
...入力が次の行に継続した時に自動で字下げを行うかどうかを返します。
デフォルト値は false です。
@return 自動で字下げを行う場合は true を返します。行わない場合は false
を返します。
@see IRB::Context#auto_indent_mode=... -
IRB
:: Context # auto _ indent _ mode=(val) (12201.0) -
入力が次の行に継続した時に自動で字下げを行うかどうかを val に設定します。
...します。
@param val true を指定した場合、自動で字下げを行います。false を指定し
た場合は自動で字下げを行いません。
IRB::Context#prompt_mode の変更に影響を受ける事に注意してください。
@see IRB::Context#auto_indent_mode... -
IRB
:: Context # prompt _ mode=(mode) (6201.0) -
プロンプトモードを mode に設定します。
...mode に設定します。
@param mode プロンプトモードを Symbol で指定します。オリジナルの
プロンプトモードか、:DEFAULT、:CLASSIC、:SIMPLE、:INF_RUBY、
:XMP、:NULL のいずれを指定してください。
@see IRB::Context#prompt_mode... -
IRB
:: Context # thread -> Thread (6201.0) -
現在のスレッドを返します。
...現在のスレッドを返します。
@see Thread.current... -
IRB
:: Context # debug? -> bool (6101.0) -
irb がデバッグモード(IRB::Context#debug_level が 1 以上)で動作し ているかどうかを返します。
...irb がデバッグモード(IRB::Context#debug_level が 1 以上)で動作し
ているかどうかを返します。
デフォルト値は false です。
@see IRB::Context#debug_level, IRB::Context#debug_level=... -
IRB
:: Context # debug _ level -> Integer (6101.0) -
irb のデバッグレベルを返します。
...irb のデバッグレベルを返します。
デフォルト値は 0 です。
@see IRB::Context#debug_level=, IRB::Context#debug?... -
IRB
:: Context # debug _ level=(val) (6101.0) -
irb のデバッグレベルを val に設定します。
...irb のデバッグレベルを val に設定します。
.irbrc ファイル中で IRB.conf[:DEBUG_LEVEL] を設定する事でも同様の操作
が行えます。
@see IRB::Context#debug_level, IRB::Context#debug?... -
IRB
:: Context # inspect _ mode -> object | nil (6101.0) -
実行結果の出力方式を返します。
...実行結果の出力方式を返します。
@see IRB::Context#inspect_mode=... -
IRB
:: Context # inspect _ mode=(opt) (6101.0) -
実行結果の出力方式を opt に設定します。
..., :pretty_inspect
出力結果を pretty_inspect したものを表示します。
: :yaml, :YAML
出力結果を YAML 形式にしたものを表示します。
: :marshal, :Marshal, :MARSHAL, Marshal
出力結果を Marshal.#dump したものを表示します。
@see lib:irb#inspect_mode...