Uses of Class
com.gengoai.tuple.Tuple3
-
Packages that use Tuple3 Package Description com.gengoai.collection.counter Contains implementations for Counters and MultiCounters that are specialized object-double and object-object-double maps.com.gengoai.tuple Pairs, Triples, Quadruples, and general NTuples -
-
Uses of Tuple3 in com.gengoai.collection.counter
Methods in com.gengoai.collection.counter that return types with arguments of type Tuple3 Modifier and Type Method Description Set<Tuple3<K,V,Double>>
BaseMultiCounter. entries()
Set<Tuple3<K,V,Double>>
MultiCounter. entries()
A set of triplies entries (key1,key2,double) making up the counterConstructor parameters in com.gengoai.collection.counter with type arguments of type Tuple3 Constructor Description ConcurrentHashMapMultiCounter(@NonNull Collection<Tuple3<K,V,Double>> items)
Instantiates a new ConcurrentHashMapMultiCounter initializing it with the given values.HashMapMultiCounter(@NonNull Collection<Tuple3<K,V,Double>> items)
Instantiates a new HashMapMultiCounter initializing it with the given values. -
Uses of Tuple3 in com.gengoai.tuple
Methods in com.gengoai.tuple that return Tuple3 Modifier and Type Method Description static <F,S,T>
Tuple3<F,S,T>Tuples. $(F first, S second, T third)
Creates a triple from the given items<T> Tuple3<T,K,V>
Tuple2. appendLeft(T object)
<T> Tuple3<K,V,T>
Tuple2. appendRight(T object)
static <A,B,C>
Tuple3<A,B,C>Tuple3. of(A a, B b, C c)
Static ConstructorTuple3<B,C,D>
Tuple4. shiftLeft()
Tuple3<A,B,C>
Tuple4. shiftRight()
-