Class IterChain<T>

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

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