| Package | Description |
|---|---|
| com.metamx.common.guava | |
| com.metamx.common.guava.nary |
| Modifier and Type | Method and Description |
|---|---|
<InType,RetType> |
FunctionalIterable.binaryTransform(Iterable<InType> otherIterable,
BinaryFn<T,InType,RetType> binaryFn) |
<InType,RetType> |
FunctionalIterator.binaryTransform(Iterator<InType> otherIterator,
BinaryFn<T,InType,RetType> binaryFn) |
| Modifier and Type | Method and Description |
|---|---|
static <InType,OutType> |
SortedMergeIterable.create(Iterable<InType> lhs,
Iterable<InType> rhs,
Comparator<InType> comparator,
BinaryFn<InType,InType,OutType> fn) |
static <Type1,Type2,RetType> |
BinaryTransformIterable.create(Iterable<Type1> lhs,
Iterable<Type2> rhs,
BinaryFn<Type1,Type2,RetType> fn) |
static <InType,OutType> |
SortedMergeIterator.create(Iterator<InType> lhs,
Iterator<InType> rhs,
Comparator<InType> comparator,
BinaryFn<InType,InType,OutType> fn) |
static <Type1,Type2,RetType> |
BinaryTransformIterator.create(Iterator<Type1> lhs,
Iterator<Type2> rhs,
BinaryFn<Type1,Type2,RetType> fn) |
| Constructor and Description |
|---|
BinaryTransformIterable(Iterable<Type1> lhs,
Iterable<Type2> rhs,
BinaryFn<Type1,Type2,RetType> binaryFn) |
BinaryTransformIterator(Iterator<Type1> lhsIter,
Iterator<Type2> rhsIter,
BinaryFn<Type1,Type2,RetType> binaryFn) |
SortedMergeIterable(Iterable<InType> lhs,
Iterable<InType> rhs,
Comparator<InType> comparator,
BinaryFn<InType,InType,OutType> fn) |
SortedMergeIterator(Iterator<InType> lhs,
Iterator<InType> rhs,
Comparator<InType> comparator,
BinaryFn<InType,InType,OutType> fn) |
Copyright © 2016. All rights reserved.