summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-14 10:12:17 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-14 10:12:17 +0000
commit1b9034825293464ff4ce6b501dec50b9b0532f6d (patch)
treed93d8c4757f2f09dcdb845d7b40583ea6eb719cb /NEWS
parent0e5c1f998124de44e53eaf16ee8d6a330798718c (diff)
* enum.c New methods: Enumerable#take, #take_while, #drop and
#drop_while; backported from 1.9. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@16012 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 3750142eb1..3a0696337c 100644
--- a/NEWS
+++ b/NEWS
@@ -63,6 +63,8 @@ with all sufficient information, see the ChangeLog file.
* Enumerable#count
* Enumerable#cycle
+ * Enumerable#drop
+ * Enumerable#drop_while
* Enumerable#find_index
* Enumerable#first
* Enumerable#group_by
@@ -72,6 +74,8 @@ with all sufficient information, see the ChangeLog file.
* Enumerable#minmax_by
* Enumerable#none?
* Enumerable#one?
+ * Enumerable#take
+ * Enumerable#take_while
New methods.