Uses of Interface
no.digipost.tuple.Triple
Packages that use Triple
-
Uses of Triple in no.digipost.tuple
Methods in no.digipost.tuple that return TripleModifier and TypeMethodDescriptionTriple.asTriple()ViewableAsTriple.asTriple()static <T1,T2, T3> Triple<T1, T2, T3> <S1,S2, S3> Triple<S1, S2, S3> Triple.map(Function<? super T1, ? extends S1> firstMapper, Function<? super T2, ? extends S2> secondMapper, Function<? super T3, ? extends S3> thirdMapper) Create a new triple by applying a function to each element, and putting the results into a new triple.Create a new triple by applying a function to the first element, and putting the result as the first element of the new triple.Create a new triple by applying a function to the second element, and putting the result as the second element of the new triple.Create a new triple by applying a function to the third element, and putting the result as the third element of the new triple.static <T1,T2, T3> Triple<T1, T2, T3> Triple.of(T1 first, T2 second, T3 third)