From d32b853e4502e385372e5ae45503290df824518e Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 3 Jul 2009 18:14:33 +0000 Subject: * enum.c (enum_join): add Enumerable#join. * array.c (ary_join_1): recursive join for Enumerators (and objects with #to_a). * array.c (rb_ary_join): performance tune. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 841b0bdb0..93fcceb24 100644 --- a/ChangeLog +++ b/ChangeLog @@ -79,6 +79,15 @@ Wed Jul 1 06:47:09 2009 Nobuyoshi Nakada * enum.c (enum_grep): gets rid of type-punning calls. +Wed Jul 1 06:36:28 2009 Yukihiro Matsumoto + + * enum.c (enum_join): add Enumerable#join. + + * array.c (ary_join_1): recursive join for Enumerators (and + objects with #to_a). + + * array.c (rb_ary_join): performance tune. + Tue Jun 30 18:19:07 2009 Yukihiro Matsumoto * hash.c (rb_hash_hash): documentation fix. a patch from -- cgit