Class IteratorChain<T>

java.lang.Object
org.miaixz.bus.core.center.iterator.IteratorChain<T>
Type Parameters:
T - 元素类型
All Implemented Interfaces:
Iterable<Iterator<T>>, Iterator<T>, Chain<Iterator<T>,IteratorChain<T>>

public class IteratorChain<T> extends Object implements Iterator<T>, Chain<Iterator<T>,IteratorChain<T>>
组合Iterator,将多个Iterator组合在一起,便于集中遍历
Since:
Java 17+
Author:
Kimi Liu