Uses of Class
dk.cloudcreate.essentials.shared.functional.tuple.Either
Packages that use Either
-
Uses of Either in dk.cloudcreate.essentials.shared.functional.tuple
Methods in dk.cloudcreate.essentials.shared.functional.tuple that return EitherModifier and TypeMethodDescription<R1,R2> Either<R1, R2> Either.map(BiFunction<? super T1, ? super T2, Either<R1, R2>> mappingFunction) Maps the elements of thisEitherusing the mapping function<R1,R2> Either<R1, R2> Either.map(Function<? super T1, ? super R1> mappingFunction1, Function<? super T2, ? super R2> mappingFunction2) Maps the elements of thisEitherusing two distinct mapping functionsMap the first element of thisEitherusing the mapping functionMap the second element of thisEitherusing the mapping functionstatic <T1,T2> Either<T1, T2> Either.of_1(T1 t1) static <T1,T2> Either<T1, T2> Either.of_2(T2 t2) Either.swap()Swap the elements of thisEitherMethod parameters in dk.cloudcreate.essentials.shared.functional.tuple with type arguments of type Either