Uses of Class
org.apache.druid.collections.CombiningIterable
-
Packages that use CombiningIterable Package Description org.apache.druid.collections -
-
Uses of CombiningIterable in org.apache.druid.collections
Methods in org.apache.druid.collections that return CombiningIterable Modifier and Type Method Description static <T> CombiningIterable<T>
CombiningIterable. create(Iterable<T> it, Comparator<T> comparator, BinaryOperator<T> fn)
static <T> CombiningIterable<T>
CombiningIterable. createSplatted(Iterable<? extends Iterable<T>> in, Comparator<T> comparator)
Creates a CombiningIterable around a MergeIterable such that equivalent elements are thrown away If there are multiple Iterables in parameter "in" with equivalent objects, there are no guarantees around which object will win.
-