aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-16 22:30:16 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-16 22:30:16 +0000
commitd49860bfbcdd30ffd3f3d72a057e7a506e174d65 (patch)
tree58adca425fb5bc28e33e1163eab5f22d72b296c1
parent5b5bbdbb35098e8e2dabe7af5d31526a54dc8bbd (diff)
downloadruby-d49860bfbcdd30ffd3f3d72a057e7a506e174d65.tar.gz
NEWS: add Array#repeated_{combinationpermutation} [Feature #2981]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27369 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--NEWS4
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dda8c7c8ef..5cf62dda26 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Apr 17 07:27:53 2010 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
+
+ * NEWS: add Array#repeated_{combinationpermutation} [Feature #2981]
+
Sat Apr 17 05:30:22 2010 Aaron Patterson <aaron@tenderlovemaking.com>
* ext/psych/lib/psych/core_ext.rb (yaml_as): supporting deprecated
diff --git a/NEWS b/NEWS
index c8d6f7cd1d..a3651a5a98 100644
--- a/NEWS
+++ b/NEWS
@@ -16,8 +16,10 @@ with all sufficient information, see the ChangeLog file.
* Array
* new method:
* Array#keep_if
- * Array#rotate!
+ * Array#repeated_combination
+ * Array#repeated_permutation
* Array#rotate
+ * Array#rotate!
* Array#select!
* Array#sort_by!