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) Parsesstringinto aSelectionby treating the single'*'character asSelection.all(), and delegating toelementParserto 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 newCheckedFunctionthat 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 newCheckedBiFunctionthat maps the return value usingmapper.default <R> CheckedFunction<F, R, E> CheckedFunction.andThen(CheckedFunction<? super T, ? extends R, ? extends E> mapper) Returns a newCheckedFunctionthat maps the return value usingmapper.default <R> CheckedSupplier<R, E> CheckedSupplier.andThen(CheckedFunction<? super T, ? extends R, ? extends E> mapper) Returns a newCheckedSupplierthat maps the return value usingmapper.