384件ヒット
[1-100件を表示]
(0.031秒)
種類
- 特異メソッド (228)
- インスタンスメソッド (60)
- モジュール関数 (48)
- 文書 (24)
- 関数 (24)
ライブラリ
- ビルトイン (252)
-
net
/ smtp (12) - pathname (36)
-
webrick
/ httpproxy (24) - zlib (12)
クラス
- IO (204)
-
Net
:: SMTP (12) - Pathname (36)
-
Zlib
:: GzipWriter (12)
モジュール
- Kernel (48)
オブジェクト
-
WEBrick
:: NullReader (24)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - binread (12)
- gets (12)
- popen (168)
- printf (12)
-
rb
_ thread _ initialize (12) -
rb
_ thread _ start (12) - readlines (12)
- ready (12)
-
ruby 1
. 9 feature (12) - spawn (48)
検索結果
先頭5件
-
Pathname
# read(*args) -> String | nil (18240.0) -
IO.read(self.to_s, *args)と同じです。
...IO.read(self.to_s, *args)と同じです。
@see IO.read... -
WEBrick
:: NullReader . read(*args) -> nil (18203.0) -
常に nil を返します。
常に nil を返します。 -
IO
. read(path , **opt) -> String | nil (18145.0) -
path で指定されたファイルを offset 位置から length バイト分読み込んで返します。
...合は nil を返します。ただし、length に nil か 0 が指定されている場合は、空文字列 "" を返します。例えば、IO.read(空ファイル) は "" を返します。
引数 length が指定された場合はバイナリ読み込みメソッド、そうでない場合は......:open_args
IO.open に渡される引数を配列で指定します。
これらの他、 :external_encoding など
IO.open のオプション引数が指定できます。
@see IO.binread
例:
IO.read(empty_file) #=> ""
IO.read(empty_file, 1) #=> nil
IO.read(one_......byte_file, 0, 10) #=> ""
IO.read(one_byte_file, nil, 10) #=> ""
IO.read(one_byte_file, 1, 10) #=> nil... -
IO
. read(path , length = nil , **opt) -> String | nil (18145.0) -
path で指定されたファイルを offset 位置から length バイト分読み込んで返します。
...合は nil を返します。ただし、length に nil か 0 が指定されている場合は、空文字列 "" を返します。例えば、IO.read(空ファイル) は "" を返します。
引数 length が指定された場合はバイナリ読み込みメソッド、そうでない場合は......:open_args
IO.open に渡される引数を配列で指定します。
これらの他、 :external_encoding など
IO.open のオプション引数が指定できます。
@see IO.binread
例:
IO.read(empty_file) #=> ""
IO.read(empty_file, 1) #=> nil
IO.read(one_......byte_file, 0, 10) #=> ""
IO.read(one_byte_file, nil, 10) #=> ""
IO.read(one_byte_file, 1, 10) #=> nil... -
IO
. read(path , length = nil , offset = 0 , **opt) -> String | nil (18145.0) -
path で指定されたファイルを offset 位置から length バイト分読み込んで返します。
...合は nil を返します。ただし、length に nil か 0 が指定されている場合は、空文字列 "" を返します。例えば、IO.read(空ファイル) は "" を返します。
引数 length が指定された場合はバイナリ読み込みメソッド、そうでない場合は......:open_args
IO.open に渡される引数を配列で指定します。
これらの他、 :external_encoding など
IO.open のオプション引数が指定できます。
@see IO.binread
例:
IO.read(empty_file) #=> ""
IO.read(empty_file, 1) #=> nil
IO.read(one_......byte_file, 0, 10) #=> ""
IO.read(one_byte_file, nil, 10) #=> ""
IO.read(one_byte_file, 1, 10) #=> nil... -
static VALUE rb
_ thread _ initialize(VALUE thread , VALUE args) (6300.0) -
-
Pathname
# binread(*args) -> String | nil (6217.0) -
IO.binread(self.to_s, *args)と同じです。
....binread(self.to_s, *args)と同じです。
//emlist[例][ruby]{
require "pathname"
pathname = Pathname("testfile")
pathname.binread # => "This is line one\nThis is line two\nThis is line three\nAnd so on...\n"
pathname.binread(20) # => "This is line one\nThi"
pathname.binread(20,......10) # => "ne one\nThis is line "
//}
@see IO.binread... -
Pathname
# readlines(*args) -> [String] (6217.0) -
IO.readlines(self.to_s, *args)と同じです。
...IO.readlines(self.to_s, *args)と同じです。
@see IO.readlines... -
static VALUE rb
_ thread _ start(VALUE klass , VALUE args) (6200.0) -