diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-03 06:13:22 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-03 06:13:22 +0000 |
commit | 687ada5dbefe15fc82598a7f0d553fb6c86d3a48 (patch) | |
tree | 230849f092746ac922fce8b0ef0533db8d5bb471 | |
parent | e60379f562491b48d6447dfcbc875e4c37347a27 (diff) | |
download | ruby-687ada5dbefe15fc82598a7f0d553fb6c86d3a48.tar.gz ruby-687ada5dbefe15fc82598a7f0d553fb6c86d3a48.tar.xz ruby-687ada5dbefe15fc82598a7f0d553fb6c86d3a48.zip |
* lib/set.rb (Set#classify): Back out the `group_by' alias.
Better think twice.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/set.rb | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Jun 3 15:12:01 2008 Akinori MUSHA <knu@iDaemons.org> + + * lib/set.rb (Set#classify): Back out the `group_by' alias. + Better think twice. + Tue Jun 3 15:00:22 2008 Akinori MUSHA <knu@iDaemons.org> * lib/set.rb (Set#collect, Set#select): Back out. I thought it diff --git a/lib/set.rb b/lib/set.rb index 4cba96e9e..b6988b6c7 100644 --- a/lib/set.rb +++ b/lib/set.rb @@ -370,7 +370,6 @@ class Set h end - alias group_by classify # Divides the set into a set of subsets according to the commonality # defined by the given block. |