24件ヒット
[1-24件を表示]
(0.053秒)
種類
- 特異メソッド (12)
- インスタンスメソッド (8)
- ライブラリ (4)
ライブラリ
-
irb
/ ext / math-mode (8) -
irb
/ extend-command (12)
クラス
-
IRB
:: Context (8)
モジュール
-
IRB
:: ContextExtender (12)
キーワード
-
install
_ extend _ commands (12) - irb (4)
- math? (4)
検索結果
先頭4件
-
IRB
:: Context # math _ mode -> bool (15223.0) -
math_mode が有効かどうかを返します。
...
math_mode が有効かどうかを返します。
@see IRB::Context#math_mode=, IRB::Context#inspect?... -
irb (474.0)
-
irb は Interactive Ruby の略です。 irb を使うと、Ruby の式を標準入力から簡単に入力・実行することができます。
...0>
あとは Ruby の式を入力するだけで、その式が実行され、結果が表示されます。
irb(main):001:0> 1+2
3
irb(main):002:0> class Foo
irb(main):003:1> def foo
irb(main):004:2> print 1
irb(main):005:2> end
irb(main):006:1> end
:foo
irb(main):007:0>......EOF] = true
IRB.conf[:IGNORE_SIGINT] = true
IRB.conf[:INSPECT_MODE] = nil
IRB.conf[:IRB_NAME] = "irb"
IRB.conf[:IRB_RC] = nil
IRB.conf[:MATH_MODE] = false
IRB.conf[:PROMPT] = {....}
IRB.conf[:PROMPT_MODE] = :DEFAULT
IRB.conf[:SINGLE_IRB] = false
IRB.conf[:SAVE_HISTORY] = nil
IRB.......PT_I => nil, # 通常時のプロンプト
:PROMPT_N => nil, # 継続行のプロンプト
:PROMPT_S => nil, # 文字列などの継続行のプロンプト
:PROMPT_C => nil, # 式が継続している時のプロンプト
:RETURN => " ==>%s\n"... -
IRB
:: Context # math? -> bool (123.0) -
math_mode が有効かどうかを返します。
...
math_mode が有効かどうかを返します。
@see IRB::Context#math_mode=, IRB::Context#inspect?... -
IRB
:: ContextExtender . install _ extend _ commands -> object (106.0) -
定義済みの拡張を読み込みます。
...張を読み込みます。
IRB::Context で以下のメソッドが利用できるようになります。
* eval_history=
* use_tracer=
* math_mode=
* use_loader=
* save_history=
irb/extend-command が require された時にライブラリ内部で自動的
に実行されます。
@see...