Uses of Interface
com.google.mu.function.CheckedBiFunction
Package
Description
Some extra functional interfaces.
StringFormat, Substring, Optionals and more...
-
Uses of CheckedBiFunction in com.google.mu.function
Modifier and TypeMethodDescriptiondefault <R> CheckedBiFunction
<A, B, R, E> CheckedBiFunction.andThen
(CheckedFunction<? super T, ? extends R, ? extends E> mapper) Returns a newCheckedBiFunction
that maps the return value usingmapper
. -
Uses of CheckedBiFunction in com.google.mu.util
Modifier and TypeMethodDescriptionstatic <A,
B, T, E extends Throwable>
BiFunction<A, B, Maybe<T, E>> Maybe.maybe
(CheckedBiFunction<? super A, ? super B, ? extends T, ? extends E> function) Deprecated.Wrapsfunction
to be used for a stream of Maybe.static <A,
B, T, E extends Throwable>
BiFunction<A, B, Maybe<T, E>> Maybe.maybe
(CheckedBiFunction<? super A, ? super B, ? extends T, ? extends E> function, Class<E> exceptionType) Deprecated.Wrapsfunction
to be used for a stream of Maybe.static <A,
B, T, E extends Throwable>
BiFunction<A, B, Stream<Maybe<T, E>>> Maybe.maybeStream
(CheckedBiFunction<? super A, ? super B, ? extends Stream<? extends T>, ? extends E> function) Deprecated.Wrapsfunction
that returnsStream<T>
to one that returnsStream<Maybe<T, E>>
with exceptions of typeE
wrapped.static <A,
B, T, E extends Throwable>
BiFunction<A, B, Stream<Maybe<T, E>>> Maybe.maybeStream
(CheckedBiFunction<? super A, ? super B, ? extends Stream<? extends T>, ? extends E> function, Class<E> exceptionType) Deprecated.Wrapsfunction
that returnsStream<T>
to one that returnsStream<Maybe<T, E>>
with exceptions of typeE
wrapped.