680件ヒット
[601-680件を表示]
(0.068秒)
ライブラリ
- stringio (680)
キーワード
- << (12)
- bytes (14)
- chars (14)
- close (12)
-
close
_ read (12) -
close
_ write (12) - codepoints (14)
- each (24)
-
each
_ byte (24) -
each
_ char (24) -
each
_ codepoint (24) -
each
_ line (24) - getbyte (12)
- getc (12)
- gets (12)
- lineno= (12)
- lines (14)
- pos= (12)
- print (24)
- printf (12)
- putc (12)
- puts (12)
- read (36)
-
read
_ nonblock (12) - readbyte (12)
- readchar (12)
- readline (12)
- readlines (12)
- readpartial (36)
- reopen (24)
- seek (12)
-
set
_ encoding (36) - string= (12)
- sync= (12)
- sysread (36)
- syswrite (12)
- truncate (12)
- ungetbyte (12)
- ungetc (12)
- write (12)
-
write
_ nonblock (12)
検索結果
先頭5件
-
StringIO
# codepoints -> Enumerator (3008.0) -
自身の各コードポイントに対して繰り返します。
...自身の各コードポイントに対して繰り返します。
@see IO#each_codepoint... -
StringIO
# codepoints {|codepoint| . . . } -> self (3008.0) -
自身の各コードポイントに対して繰り返します。
...自身の各コードポイントに対して繰り返します。
@see IO#each_codepoint... -
StringIO
# each _ codepoint -> Enumerator (3008.0) -
自身の各コードポイントに対して繰り返します。
...自身の各コードポイントに対して繰り返します。
@see IO#each_codepoint... -
StringIO
# each _ codepoint {|codepoint| . . . } -> self (3008.0) -
自身の各コードポイントに対して繰り返します。
...自身の各コードポイントに対して繰り返します。
@see IO#each_codepoint... -
StringIO
# getbyte -> Integer | nil (3008.0) -
自身から 1 文字読み込んで、その文字に対応する Fixnum を返します。 文字列の終端に到達した時には nil を返します。
...xnum を返します。
文字列の終端に到達した時には nil を返します。
@raise IOError 自身が読み取り不可なら発生します。
//emlist[例][ruby]{
require "stringio"
a = StringIO.new("ho")
a.getbyte #=> 104
a.getbyte #=> 111
a.getbyte... -
StringIO
# lineno=(n) (3008.0) -
現在の行番号を n にセットします。
...現在の行番号を n にセットします。
@param n 行番号を整数で指定します。... -
StringIO
# readbyte -> Integer (3008.0) -
自身から 1 文字読み込んで、その文字に対応する整数を返します。
...対応する整数を返します。
文字列の終端に到達した時には例外 EOFError を発生させます。
//emlist[例][ruby]{
require "stringio"
a = StringIO.new("hoge")
a.readbyte #=> 104
//}
@raise EOFError 文字列の終端に到達した時に発生します。... -
StringIO
# sync=(bool) (3008.0) -
何もせずに bool を返します。
...何もせずに bool を返します。
@param bool true か false を指定します。...