812件ヒット
[801-812件を表示]
(0.087秒)
ライブラリ
- ビルトイン (446)
- csv (36)
- erb (36)
-
irb
/ input-method (48) -
net
/ http (48) - pathname (12)
-
rubygems
/ package / tar _ reader / entry (12) -
rubygems
/ source _ info _ cache (12) - shell (18)
-
shell
/ command-processor (18) -
shell
/ filter (18) - zlib (108)
クラス
-
ARGF
. class (60) - CSV (36)
- Dir (12)
- ERB (36)
- File (12)
-
File
:: Stat (48) -
Gem
:: Package :: TarReader :: Entry (12) -
Gem
:: SourceInfoCache (12) - IO (274)
-
IRB
:: InputMethod (12) -
IRB
:: ReadlineInputMethod (24) -
IRB
:: StdioInputMethod (12) - Method (14)
-
Net
:: HTTPGenericRequest (24) -
Net
:: HTTPResponse (24) - Pathname (12)
- Proc (14)
- Shell (18)
-
Shell
:: CommandProcessor (18) -
Shell
:: Filter (18) - String (12)
-
Zlib
:: GzipReader (24) -
Zlib
:: GzipWriter (84)
キーワード
- << (38)
- >> (14)
-
add
_ row (12) - birthtime (12)
-
body
_ stream (12) -
body
_ stream= (12) - clone (12)
- close (12)
- closed? (12)
- count (12)
-
def
_ class (12) - dup (12)
- eof? (12)
- fdatasync (12)
- file? (12)
- filename (24)
- filename= (12)
- flock (12)
- flush (24)
- getc (12)
- path (12)
- pread (8)
- print (12)
- printf (12)
- putc (12)
- puts (24)
- pwrite (8)
-
read
_ body (24) -
read
_ cache _ data (12) - readable? (30)
-
readable
_ atfer _ eof? (36) -
readable
_ real? (30) - readbyte (24)
- readchar (36)
- readline (48)
- readlines (36)
- readlink (30)
-
set
_ encoding _ by _ bom (6) - sysread (12)
- sysseek (12)
- syswrite (12)
- ungetc (12)
-
world
_ readable? (12) - write (24)
検索結果
先頭1件
-
IO
# dup -> IO (13.0) -
レシーバと同じ IO を参照する新しい IO オブジェクトを返します。 参照しているファイル記述子は dup(2) されます。
...しいフリーズされていない IO を返します。
@raise IOError 既に close されていた場合に発生します。
//emlist[例][ruby]{
clone_io = nil
IO.write("testfile", "test")
File.open("testfile") do |io|
clone_io = io.clone
end
clone_io.read # => "test"
clone_io.close
//}...