This is an automated email from the ASF dual-hosted git repository. ggregory pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
from a0172c8dd Added ExtendedIterator and tests #564 new c4a0d4c27 Use final new d591c8578 Refactor ExtendedIterator and FilterIterator with a new interface IteratorOperations The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: src/changes/changes.xml | 1 + .../apache/commons/collections4/IteratorUtils.java | 28 ++++ .../collections4/iterators/ExtendedIterator.java | 165 +++++++++------------ .../collections4/iterators/FilterIterator.java | 14 +- .../collections4/iterators/IteratorOperations.java | 88 +++++++++++ .../iterators/ExtendedIteratorTest.java | 118 +++++++-------- .../collections4/iterators/FilterIteratorTest.java | 61 ++++++++ 7 files changed, 311 insertions(+), 164 deletions(-) create mode 100644 src/main/java/org/apache/commons/collections4/iterators/IteratorOperations.java