Uses of Class
com.vladris.maki.Error
-
Packages that use Error Package Description com.vladris.maki -
-
Uses of Error in com.vladris.maki
Methods in com.vladris.maki that return Error Modifier and Type Method Description <U> Error<U>
Error. bind(java.util.function.Function<T,Error<U>> func)
Binds the given function to the Error returning a newError<U>
.static <T> Error<T>
Error. make(ThrowingSupplier<T> supplier)
Makes an Error from the given ThrowingSupplier.static <T> Error<T>
Error. makeError(java.lang.Exception ex)
Makes an Error from the given Exception.static <T> Error<T>
Error. makeValue(T value)
Makes an Error from the given value.<U> Error<U>
Error. map(java.util.function.Function<T,U> func)
Maps the given function over the Error returning a newError<U>
.Method parameters in com.vladris.maki with type arguments of type Error Modifier and Type Method Description <U> Error<U>
Error. bind(java.util.function.Function<T,Error<U>> func)
Binds the given function to the Error returning a newError<U>
.
-