るりまサーチ

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

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. kernel $-i
  5. csv to_i

ライブラリ

モジュール

検索結果

<< 1 2 3 ... > >>

irb/output-method (32000.0)

irb が出力を扱うためのサブライブラリです。

...irb が出力を扱うためのサブライブラリです。...

PrettyPrint#output -> object (21117.0)

自身の output を返します。

...自身の output を返します。...

PrettyPrint.singleline_format(output = &#39;&#39;, maxwidth = 79, newline = "\n", genspace = lambda{|n| &#39; &#39; * n}) {|pp| ...} -> object (15413.0)

PrettyPrint オブジェクトを生成し、それを引数としてブロックを実行します。 PrettyPrint.format に似ていますが、改行しません。

...PrettyPrint オブジェクトを生成し、それを引数としてブロックを実行します。
PrettyPrint.format に似ていますが、改行しません。

引数 maxwidth, newline と genspace は無視されます。ブロック中の breakable の実行は、
改行せずに text...
...の実行であるかのように扱います。

@param output 出力先を指定します。output は << メソッドを持っていなければなりません。

@param maxwidth 無視されます。

@param newline 無視されます。

@param genspace 無視されます。...

Encoding::Converter#insert_output(string) -> nil (15319.0)

変換器内のバッファに文字列を挿入します。 バッファに保持された文字列は、次の変換時の変換結果と一緒に返されます。

...string 挿入する文字列

//emlist[][ruby]{
ec = Encoding::Converter.new("utf-8", "iso-8859-1")
src = "HIRAGANA LETTER A is \u{3042}."
dst = ""
p ec.primitive_convert(src, dst) #=> :undefined_conversion
puts "[#{dst.dump}, #{src.dump}]" #=> ["HIRAGANA LETTER A is ", "."]
ec.insert_output("<...
...r>")
p ec.primitive_convert(src, dst) #=> :finished
puts "[#{dst.dump}, #{src.dump}]" #=> ["HIRAGANA LETTER A is <err>.", ""]

ec = Encoding::Converter.new("utf-8", "iso-2022-jp")
src = "\u{306F 3041 3068 2661 3002}" # U+2661 is not representable in iso-2022-jp
dst = ""
p ec.primitive_convert(s...
...rc, dst) #=> :undefined_conversion
puts "[#{dst.dump}, #{src.dump}]" #=> ["\e$B$O$!$H".force_encoding("ISO-2022-JP"), "\xE3\ x80\x82"]
ec.insert_output "?" # state change required to output "?".
p ec.primitive_convert(src, dst) #=> :finished
puts "[#{dst.dump}, #{src.dump}...

RSS::RootElementMixin#output_encoding (12202.0)

@todo

@todo

絞り込み条件を変える

RSS::RootElementMixin#output_encoding= (12202.0)

@todo

@todo

Shell.debug_output_exclusive_unlock { ... } -> Mutex | nil (12201.0)

@todo

...@todo

@see Mutex#exclusive_unlock...

Shell.debug_output_synchronize (12201.0)

@todo

...@todo

@see Mutex#synchronize...
...@todo

@see Thread::Mutex#synchronize...

Shell::ProcessController.block_output_synchronize { ... } -> () (12201.0)

@todo

@todo

IRB::StdioOutputMethod (12000.0)

標準出力を表すクラスです。ライブラリ内部で使用します。

標準出力を表すクラスです。ライブラリ内部で使用します。

絞り込み条件を変える

Rake::Application#tty_output=(tty_output_state) (9244.0)

TTY に対する出力状態を上書きします。

..._output_state 変更後の状態を指定します

//emlist[][ruby]{
# Rakefile での記載例とする

task default: :test_rake_app
task :test_rake_app do
Rake.application.tty_output? # => false
Rake.application.tty_output = "debug output" # => "debug output"
Rake.applicati...
...on.tty_output? # => "debug output"
end
//}...
<< 1 2 3 ... > >>