るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.039秒)
トップページ > バージョン:2.2.0[x] > クエリ:IO[x] > クエリ:DEFAULT[x] > クラス:IO[x]

別のキーワード

  1. io popen
  2. io pipe
  3. io each
  4. io readlines
  5. io each_line

検索結果

IO.default_console_size -> [Integer, Integer] (81307.0)

デフォルトの端末のサイズを [rows, columns] で返します。

デフォルトの端末のサイズを [rows, columns] で返します。

IO#external_encoding -> Encoding | nil (63118.0)

IO の外部エンコーディングを返します。 外部エンコーディングが指定されていない場合は nil を返します。 ただし読み込み専用モードの場合は Encoding.default_external になります。

...
IO
の外部エンコーディングを返します。
外部エンコーディングが指定されていない場合は nil を返します。
ただし読み込み専用モードの場合は Encoding.default_external になります。

//emlist[例][ruby]{
IO
.write("testfile", "abcde")
File.ope...

IO.console_size -> [Integer, Integer] (63094.0)

端末のサイズを [rows, columns] で返します。

...端末のサイズを [rows, columns] で返します。

io
/console が利用できない場合は、IO.default_console_size
の値を返します。

@see IO.default_console_size...