Uses of Interface
com.google.mu.function.CheckedFunction
Packages that use CheckedFunction
Package
Description
A few useful collections
Some extra functional interfaces
-
Uses of CheckedFunction in com.google.mu.collect
Methods in com.google.mu.collect with parameters of type CheckedFunctionModifier and TypeMethodDescriptionSelection.Parser.parse
(String string, CheckedFunction<String, ? extends T, E> elementParser) Parsesstring
into aSelection
by treating the single'*'
character asSelection.all()
, and delegating toelementParser
to parse each explicit selection element. -
Uses of CheckedFunction in com.google.mu.function
Methods in com.google.mu.function that return CheckedFunctionModifier and TypeMethodDescriptiondefault <R> CheckedFunction
<F, R, E> CheckedFunction.andThen
(CheckedFunction<? super T, ? extends R, ? extends E> mapper) Returns a newCheckedFunction
that maps the return value usingmapper
.Methods in com.google.mu.function with parameters of type CheckedFunctionModifier 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
.default <R> CheckedFunction
<F, R, E> CheckedFunction.andThen
(CheckedFunction<? super T, ? extends R, ? extends E> mapper) Returns a newCheckedFunction
that maps the return value usingmapper
.default <R> CheckedSupplier
<R, E> CheckedSupplier.andThen
(CheckedFunction<? super T, ? extends R, ? extends E> mapper) Returns a newCheckedSupplier
that maps the return value usingmapper
.