BELUGA BEHR created COLLECTIONS-674:
---------------------------------------
Summary: Add Collections Drain Method
Key: COLLECTIONS-674
URL: https://issues.apache.org/jira/browse/COLLECTIONS-674
Project: Commons Collections
Issue Type: Improvement
Components: Collection
Affects Versions: 4.1
Reporter: BELUGA BEHR
Add a {{Collections.drain()}} method which removes the first N elements from
the collection and returns them. This method would have the side-effect of
modifying the input collections (due to removal).
{code:java}
// Some suggestions
void Collections.drain(Collection<T> from, Collection<T> to, int count);
Collection<t> Collections.drain(Collection<t> from, int count);{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)