12件ヒット
[1-12件を表示]
(0.075秒)
検索結果
-
StringIO
# seek(offset , whence = IO :: SEEK _ SET) -> 0 (35239.0) -
自身の pos を whence の位置から offset バイトだけ移動させます。
...IO::SEEK_SET: ファイルの先頭から (デフォルト)
* IO::SEEK_CUR: 現在のファイルポインタから
* IO::SEEK_END: ファイルの末尾から
@raise Errno::EINVAL offset + whence がマイナスである場合に発生します。
@raise ArgumentError whence が上の SEEK_SET......, SEEK_CUR, SEEK_END 以外だった場合に発生します。...