From 56ee304dd8dbf062a80d7a2847f7f4c543780708 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 24 Aug 2007 17:47:09 +0000 Subject: * array.c (rb_ary_s_try_convert): a new class method to convert object or nil if it's not target-type. this mechanism is used to convert types in the C implemented methods. * hash.c (rb_hash_s_try_convert): ditto. * io.c (rb_io_s_try_convert): ditto. * re.c (rb_reg_s_try_convert): ditto. * string.c (rb_str_s_try_convert): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13251 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index bfb3becc5..7a1f5375b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +Sat Aug 25 02:08:45 2007 Yukihiro Matsumoto + + * array.c (rb_ary_s_try_convert): a new class method to convert + object or nil if it's not target-type. this mechanism is used + to convert types in the C implemented methods. + + * hash.c (rb_hash_s_try_convert): ditto. + + * io.c (rb_io_s_try_convert): ditto. + + * re.c (rb_reg_s_try_convert): ditto. + + * string.c (rb_str_s_try_convert): ditto. + Sat Aug 25 00:49:44 2007 Koichi Sasada * benchmark/bm_loop_generator.rb: added. -- cgit