Uses of Interface
org.apache.druid.java.util.common.guava.nary.TrinaryFn
-
Packages that use TrinaryFn Package Description org.apache.druid.java.util.common.guava org.apache.druid.java.util.common.guava.nary -
-
Uses of TrinaryFn in org.apache.druid.java.util.common.guava
Methods in org.apache.druid.java.util.common.guava with parameters of type TrinaryFn Modifier and Type Method Description <InType1,InType2,RetType>
FunctionalIterable<RetType>FunctionalIterable. trinaryTransform(Iterable<InType1> iterable1, Iterable<InType2> iterable2, TrinaryFn<T,InType1,InType2,RetType> trinaryFn) -
Uses of TrinaryFn in org.apache.druid.java.util.common.guava.nary
Methods in org.apache.druid.java.util.common.guava.nary with parameters of type TrinaryFn Modifier and Type Method Description static <Type1,Type2,Type3,RetType>
TrinaryTransformIterable<Type1,Type2,Type3,RetType>TrinaryTransformIterable. create(Iterable<Type1> iterable1, Iterable<Type2> iterable2, Iterable<Type3> iterable3, TrinaryFn<Type1,Type2,Type3,RetType> fn)static <Type1,Type2,Type3,RetType>
TrinaryTransformIterator<Type1,Type2,Type3,RetType>TrinaryTransformIterator. create(Iterator<Type1> iterator1, Iterator<Type2> iterator2, Iterator<Type3> iterator3, TrinaryFn<Type1,Type2,Type3,RetType> fn)Constructors in org.apache.druid.java.util.common.guava.nary with parameters of type TrinaryFn Constructor Description TrinaryTransformIterable(Iterable<Type1> iterable1, Iterable<Type2> iterable2, Iterable<Type3> iterable3, TrinaryFn<Type1,Type2,Type3,RetType> trinaryFn)TrinaryTransformIterator(Iterator<Type1> iterator1, Iterator<Type2> iterator2, Iterator<Type3> iterator3, TrinaryFn<Type1,Type2,Type3,RetType> trinaryFn)
-