From 2cfcc42a17d7de808fad5468cf93e1a79b839ab0 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 11 Dec 2001 03:48:08 +0000 Subject: * string.c (rb_str_match_m): should convert an argument into regexp if it's a string. * array.c (rb_ary_select): Array#select(n,m,...) now works like Array#indexes(n,m,..). [new, experimental] * hash.c (rb_hash_select): ditto. * hash.c (env_select): ditto. * re.c (match_select): ditto. * struct.c (rb_struct_select): ditto. * gc.c (STR_ASSOC): use FL_USER3 instead of FL_USER2. * parse.y (str_extend): make up pushback call. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1905 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ToDo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ToDo') diff --git a/ToDo b/ToDo index 4c826c052..0f9b3f1b0 100644 --- a/ToDo +++ b/ToDo @@ -74,6 +74,7 @@ Standard Libraries - Integer#to_s(base) - Hash::new{default} - hash etc. should handle self referenceing array/hash +- Array#select(n1,n2...) works like Array#indexes(n1,n2...) * String#scanf(?) * Object#fmt(?) * Time::strptime @@ -96,7 +97,6 @@ Standard Libraries * new caller(), e.g. call_stack; needs better name. * remove dependency on MAXPATHLEN. * pointer share mechanism similar to one in String for Array. -* Array#select(n1,n2...) works like Array#indexes(n1,n2...) * deprecate Array#indexes, and Array#indices. Extension Libraries -- cgit