るりまサーチ

最速Rubyリファレンスマニュアル検索!
44件ヒット [1-44件を表示] (0.113秒)
トップページ > クエリ:-[x] > クエリ:r[x] > クエリ:debug_level[x]

別のキーワード

  1. _builtin to_r
  2. open3 pipeline_r
  3. matrix elements_to_r
  4. bigdecimal to_r
  5. fileutils rm_r

ライブラリ

キーワード

検索結果

IRB::Context#debug_level -> Integer (21307.0)

irb のデバッグレベルを返します。

...irb のデバッグレベルを返します。

デフォルト値は 0 です。

@see IRB::Context#debug_level=, IRB::Context#debug?...

irb (6246.0)

irb は Interactive Ruby の略です。 irb を使うと、Ruby の式を標準入力から簡単に入力・実行することができます。

...irb は Interactive Ruby の略です。
irb を使うと、Ruby の式を標準入力から簡単に入力・実行することができます。

=== irb の使い方

R
uby さえ知っていれば irb を使うのは簡単です。
irb コマンドを実行すると、以下のようなプロン...
...す。
r
eadline ライブラリがインストールされている時には
自動的にコマンドライン編集や履歴の機能が使えるようになります。

=== irb のコマンドラインオプション

irb [options] file_name opts
options:
-
f ~/.irbrc を読...
...「.irbrc」と呼称します。

以下のような (Ruby の) 式を .irbrc に記述すると、
irb コマンドのオプションを指定したのと同じ効果が得られます。

IRB.conf[:AUTO_INDENT] = false
IRB.conf[:BACK_TRACE_LIMIT] = 16
IRB.conf[:DEBUG_LEVEL] = 1
IRB.conf[:...

RubyVM::InstructionSequence.compile_option -> Hash (6106.0)

命令シーケンスのコンパイル時のデフォルトの最適化オプションを Hash で返 します。

...][ruby]{
r
equire "pp"
pp RubyVM::InstructionSequence.compile_option

# => {:inline_const_cache=>true,
# :peephole_optimization=>true,
# :tailcall_optimization=>false,
# :specialized_instruction=>true,
# :operands_unification=>true,
# :instructions_unification=>false,
# :stack_caching=>false,
# :trac...
...e_instruction=>true,
# :frozen_string_literal=>false,
# :debug_frozen_string_literal=>false,
# :coverage_enabled=>true,
# :debug_level=>0}
//}

@see RubyVM::InstructionSequence.compile_option=...

IRB::Context#debug? -> bool (3128.0)

irb がデバッグモード(IRB::Context#debug_level が 1 以上)で動作し ているかどうかを返します。

...irb がデバッグモード(IRB::Context#debug_level が 1 以上)で動作し
ているかどうかを返します。

デフォルト値は false です。

@see IRB::Context#debug_level, IRB::Context#debug_level=...