956件ヒット
[901-956件を表示]
(0.153秒)
ライブラリ
- stringio (956)
キーワード
- << (12)
- binmode (12)
- bytes (14)
- chars (14)
- close (12)
-
close
_ read (12) -
close
_ write (12) - closed? (12)
-
closed
_ read? (12) -
closed
_ write? (12) - codepoints (14)
- each (24)
-
each
_ byte (24) -
each
_ char (24) -
each
_ codepoint (24) -
each
_ line (24) - eof (12)
- eof? (12)
-
external
_ encoding (12) - fcntl (12)
- fileno (12)
- flush (12)
- fsync (12)
- getbyte (12)
- getc (12)
- gets (12)
-
internal
_ encoding (12) - isatty (12)
- length (12)
- lineno (12)
- lineno= (12)
- lines (14)
- pid (12)
- pos (12)
- 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)
- rewind (12)
- seek (12)
-
set
_ encoding (36) - size (12)
- string= (12)
- sync (12)
- sync= (12)
- sysread (36)
- syswrite (12)
- tell (12)
- truncate (12)
- tty? (12)
- ungetbyte (12)
- ungetc (12)
- write (12)
-
write
_ nonblock (12)
検索結果
先頭5件
-
StringIO
# fsync -> 0 (6002.0) -
何もせずに 0 を返します。
何もせずに 0 を返します。 -
StringIO
# lineno=(n) (6002.0) -
現在の行番号を n にセットします。
現在の行番号を n にセットします。
@param n 行番号を整数で指定します。 -
StringIO
# lines(rs = $ / ) {|line| . . . } -> self (6002.0) -
自身から 1 行ずつ読み込み、それを引数として与えられたブロックを実行します。
...連続する改行を行の区切りとみなします(パラグラフモード)。
@raise IOError 自身が読み取り不可なら発生します。
//emlist[例][ruby]{
require "stringio"
a = StringIO.new("hoge\nfoo\n")
a.each{|l| p l }
#=> "hoge\n"
# "foo\n"
//}
@see $/
@see IO#each_line... -
StringIO
# pid -> nil (6002.0) -
何もせず nil を返します。
何もせず nil を返します。 -
StringIO
# rewind -> 0 (6002.0) -
自身の pos と lineno をそれぞれ 0 にします。
自身の pos と lineno をそれぞれ 0 にします。 -
StringIO
# sync=(bool) (6002.0) -
何もせずに bool を返します。
...何もせずに bool を返します。
@param bool true か false を指定します。...