Package com.querydsl.core.util
Class MultiIterator<T>
java.lang.Object
com.querydsl.core.util.MultiIterator<T>
- Type Parameters:
T- element type
MultiIterator provides a cartesian view on the given iterators
e.g. (1,2) and (100, 200, 300) are expanded to (1, 100) (1, 200) (1, 300) (2, 100) (2, 200) (2, 300)
- Author:
- tiwe