24件ヒット
[1-24件を表示]
(0.181秒)
ライブラリ
- ビルトイン (24)
クラス
-
ARGF
. class (12) -
Process
:: Status (12)
検索結果
-
Process
:: Status # >>(num) -> Integer (18145.0) -
self.to_i >> num と同じです。
...self.to_i >> num と同じです。
@param num 整数を指定します。
fork { exit 99 } #=> 26563
Process.wait #=> 26563
$?.to_i #=> 25344
$? >> 8 #=> 99... -
ARGF
. class # to _ io -> IO (6107.0) -
ARGFが現在開いているファイルのFile、またはIOオブジェクトを 返します。
...ARGFが現在開いているファイルのFile、またはIOオブジェクトを
返します。
ARGF.to_io # => #<File:glark.txt>
ARGF.to_io # => #<IO:<STDIN>>
@see ARGF.class#file, ARGF.class#to_write_io...