[前][次][番号順一覧][スレッド一覧]

ruby-reference-manual:3358

From: "pypypy567 (py _)" <redmine@r...>
Date: Sat, 13 Oct 2012 08:46:55 +0900
Subject: [ruby-reference-manual:3358] [るりまプロジェクト - Bug #7150][Open] IO#bytes と IO#each_byte が分かれている


Issue #7150 has been reported by pypypy567 (py _).

----------------------------------------
Bug #7150: IO#bytes と IO#each_byte が分かれている
https://bugs.ruby-lang.org/issues/7150

Author: pypypy567 (py _)
Status: Open
Priority: Normal
Assignee: 
Category: 
Target version: 
reporter: 
ruby_version: 


1.8.7 以降に追加されている IO#bytes は IO#each_byte と同等ですが項目が分かれています。
-- 193p195/io.c
    rb_define_method(rb_cIO, "each_byte",  rb_io_each_byte, 0);
    rb_define_method(rb_cIO, "bytes",  rb_io_each_byte, 0);
--
-- 187p370/io.c
    rb_define_method(rb_cIO, "each_byte",  rb_io_each_byte, 0);
    rb_define_method(rb_cIO, "bytes",  rb_io_bytes, 0);
--

http://doc.ruby-lang.org/ja/1.9.3/method/IO/i/bytes.html
http://doc.ruby-lang.org/ja/1.9.3/method/IO/i/each_byte.html



-- 
http://bugs.ruby-lang.org/

--
ML: ruby-reference-manual@m...
Info: http://QuickML.com/

[前][次][番号順一覧][スレッド一覧]