Uses of Class
org.apache.druid.collections.CombiningIterable
Packages that use CombiningIterable
-
Uses of CombiningIterable in org.apache.druid.collections
Methods in org.apache.druid.collections that return CombiningIterableModifier and TypeMethodDescriptionstatic <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.