Uses of Interface
io.github.venkateshamurthy.exceptional.CheckedTriFunction
Packages that use CheckedTriFunction
-
Uses of CheckedTriFunction in io.github.venkateshamurthy.exceptional
Methods in io.github.venkateshamurthy.exceptional that return CheckedTriFunctionModifier and TypeMethodDescriptionstatic <T,T2, T3, R>
CheckedTriFunction<T,T2, T3, R> RxFunction.toCheckedTriFunction(CheckedTriFunction<T, T2, T3, R> function) Reflexive convenience method for chainingMethods in io.github.venkateshamurthy.exceptional with parameters of type CheckedTriFunctionModifier and TypeMethodDescriptionstatic <T,U, V, R> io.vavr.control.Either<Exception, R> Eithers.either(CheckedTriFunction<T, U, V, R> triFunction, T t, U u, V v) Either transform of aCheckedTriFunctionthat accepts 3 argumentsstatic <T,U, V, R> io.vavr.control.Either<Exception, R> Eithers.either(CheckedTriFunction<T, U, V, R> triFunction, T t, U u, V v, Supplier<Exception> mapper) Either transform of aCheckedTriFunctionthat accepts 3 arguments with exception mapperstatic <T,U, V, R> io.vavr.control.Either<Exception, R> Eithers.either(CheckedTriFunction<T, U, V, R> triFunction, T t, U u, V v, UnaryOperator<Exception> mapper) Either transform of aCheckedTriFunctionthat accepts 3 arguments with exception mapperstatic <T,U, V, R> io.vavr.control.Either<Exception, R> Eithers.either(CheckedTriFunction<T, U, V, R> triFunction, T t, U u, V v, Map<Class<? extends Exception>, Supplier<Exception>> mapper) Either transform of aCheckedTriFunctionthat accepts 3 arguments with exception mapperstatic <T,T2, T3, R>
io.github.resilience4j.core.functions.CheckedSupplier<R>RxSupplier.toCheckedSupplier(CheckedTriFunction<T, T2, T3, R> checkedTriFunction, T t, T2 t2, T3 t3) ACheckedSupplierform ofCheckedTriFunctionstatic <T,T2, T3, R>
CheckedTriFunction<T,T2, T3, R> RxFunction.toCheckedTriFunction(CheckedTriFunction<T, T2, T3, R> function) Reflexive convenience method for chaining<T,T2, T3, R>
io.vavr.control.Try<R>RxTry.tryWrap(CheckedTriFunction<T, T2, T3, R> checkedTriFunction, T t, T2 t2, T3 t3) WrappingTriFunctionwith aTry.