398件ヒット
[1-100件を表示]
(0.051秒)
種類
- インスタンスメソッド (362)
- 特異メソッド (36)
ライブラリ
- stringio (398)
キーワード
- binmode (12)
-
close
_ read (12) - closed? (12)
-
closed
_ read? (12) -
closed
_ write? (12) - codepoints (14)
-
each
_ codepoint (24) -
external
_ encoding (12) -
internal
_ encoding (12) - new (12)
- open (24)
- pid (12)
- read (36)
-
read
_ nonblock (12) - readbyte (12)
- readchar (12)
- readline (12)
- readlines (12)
- readpartial (36)
- reopen (12)
- rewind (12)
-
set
_ encoding (36) - sysread (36)
検索結果
先頭5件
-
StringIO
# codepoints {|codepoint| . . . } -> self (6201.0) -
自身の各コードポイントに対して繰り返します。
...自身の各コードポイントに対して繰り返します。
@see IO#each_codepoint... -
StringIO
# each _ codepoint {|codepoint| . . . } -> self (6201.0) -
自身の各コードポイントに対して繰り返します。
...自身の各コードポイントに対して繰り返します。
@see IO#each_codepoint... -
StringIO
# external _ encoding -> Encoding (6201.0) -
現在の外部エンコーディングを返します。
現在の外部エンコーディングを返します。 -
StringIO
# internal _ encoding -> Encoding (6201.0) -
現在の内部エンコーディングを返します。
現在の内部エンコーディングを返します。 -
StringIO
# binmode -> self (6101.0) -
何もせずに self を返します。
何もせずに self を返します。 -
StringIO
# close _ read -> nil (6101.0) -
自身に対する読み取りを禁止します。
自身に対する読み取りを禁止します。
@raise IOError 自身がすでに読み取り不可だった場合に発生します。 -
StringIO
# closed? -> bool (6101.0) -
自身が既に close されていた場合に true を返します。そうでない場合は、false を返します。
...身が既に close されていた場合に true を返します。そうでない場合は、false を返します。
//emlist[例][ruby]{
require "stringio"
sio = StringIO.open("hoge")
p sio.closed? # => false
sio.close_read
p sio.closed? # => false
sio.close_write
p sio.closed? # => true
//}... -
StringIO
# closed _ read? -> bool (6101.0) -
自身に対する読み取りが禁止されているなら true を返します。そうでない場合は、false を返します。
自身に対する読み取りが禁止されているなら true を返します。そうでない場合は、false を返します。 -
StringIO
# closed _ write? -> bool (6101.0) -
自身に対する書き込みが禁止されているなら true を返します。そうでない場合は、false を返します。
自身に対する書き込みが禁止されているなら true を返します。そうでない場合は、false を返します。