るりまサーチ

最速Rubyリファレンスマニュアル検索!
1186件ヒット [1-100件を表示] (0.030秒)

別のキーワード

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

ライブラリ

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

IO#pos -> Integer (27119.0)

ファイルポインタの現在の位置を整数で返します。

...タの現在の位置を整数で返します。

@raise IOError 既に close されている場合に発生します。

//emlist[例][ruby]{
IO
.write("testfile", "This is line one\n")
File.open("testfile") do |f|
f.pos # => 0
f.gets # => "This is line one\n"
f.pos # => 17
end
//}...

StringIO#pos -> Integer (21101.0)

自身の現在の位置を返します。

自身の現在の位置を返します。

CSV#pos -> Integer (18167.0)

IO#pos, IO#tell に委譲します。

...
IO
#pos, IO#tell に委譲します。


@see IO#pos, IO#tell...

ARGF.class#pos -> Integer (18137.0)

ARGFが現在開いているファイルのファイルポインタの現在の位置をバイト単位 の整数で返します。

...ARGFが現在開いているファイルのファイルポインタの現在の位置をバイト単位
の整数で返します。

ARGF.pos # => 0
ARGF.gets # => "This is line one\n"
ARGF.pos # => 17

@see IO#pos, IO#tell, ARGF.class#pos=...

REXML::ParseException#position -> Integer (15200.0)

パースエラーが起きた(XML上の)場所を先頭からのバイト数で返します。

パースエラーが起きた(XML上の)場所を先頭からのバイト数で返します。

絞り込み条件を変える

IO#pos=(n) (15151.0)

ファイルポインタを指定位置に移動します。 IO#seek(n, IO::SEEK_SET) と同じです。

...ンタを指定位置に移動します。
IO
#seek(n, IO::SEEK_SET) と同じです。

@param n 先頭からのオフセットを整数で指定します。

@raise IOError 既に close されている場合に発生します。

//emlist[例][ruby]{
IO
.write("testfile", "This is line one\nThis is...
...line two\n")
File.open("testfile") do |f|
f.pos # => 0
f.pos = 17
f.gets # => "This is line two\n"
end
//}...

Net::IMAP::BodyTypeBasic#disposition -> Net::IMAP::ContentDisposition | nil (12400.0)

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183...

Net::IMAP::BodyTypeMessage#disposition -> Net::IMAP::ContentDisposition | nil (12400.0)

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183...

Net::IMAP::BodyTypeMultipart#disposition -> Net::IMAP::ContentDisposition | nil (12400.0)

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183...

Net::IMAP::BodyTypeText#disposition -> Net::IMAP::ContentDisposition | nil (12400.0)

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183...

絞り込み条件を変える

<< 1 2 3 ... > >>