Uses of Interface
nbbrd.io.function.IOFunction
-
Packages that use IOFunction Package Description nbbrd.io nbbrd.io.function -
-
Uses of IOFunction in nbbrd.io
Methods in nbbrd.io with parameters of type IOFunction Modifier and Type Method Description static <K> @NonNull Resource.Loader<K>Resource.Loader. of(@NonNull IOFunction<? super K,? extends InputStream> loader)static <K> @NonNull Resource.Loader<K>Resource.Loader. of(@NonNull IOFunction<? super K,? extends InputStream> loader, @NonNull Closeable closer) -
Uses of IOFunction in nbbrd.io.function
Subinterfaces of IOFunction in nbbrd.io.function Modifier and Type Interface Description interfaceIOUnaryOperator<T>Represents an operation on a single operand that produces a result of the same type as its operand.Methods in nbbrd.io.function that return IOFunction Modifier and Type Method Description default <V> @NonNull IOFunction<T,V>IOFunction. andThen(@NonNull IOFunction<? super R,? extends V> after)Returns a composed function that first applies this function to its input, and then applies theafterfunction to the result.static <T,R>
@NonNull IOFunction<T,R>IOFunction. checked(@NonNull Function<T,R> func)default <V> @NonNull IOFunction<V,R>IOFunction. compose(@NonNull IOFunction<? super V,? extends T> before)Returns a composed function that first applies thebeforefunction to its input, and then applies this function to the result.static <T> @NonNull IOFunction<T,T>IOFunction. identity()Returns a function that always returns its input argument.static <T,R>
@NonNull IOFunction<T,R>IOFunction. of(@Nullable R r)Methods in nbbrd.io.function with parameters of type IOFunction Modifier and Type Method Description default <V> @NonNull IOFunction<T,V>IOFunction. andThen(@NonNull IOFunction<? super R,? extends V> after)Returns a composed function that first applies this function to its input, and then applies theafterfunction to the result.default <V> @NonNull IOSupplier<V>IOSupplier. andThen(@NonNull IOFunction<? super T,? extends V> after)Returns a composed supplier that first gets a value from this function, and then applies theafterfunction to the result.default <V> @NonNull IOFunction<V,R>IOFunction. compose(@NonNull IOFunction<? super V,? extends T> before)Returns a composed function that first applies thebeforefunction to its input, and then applies this function to the result.static <T,R>
@NonNull Function<T,R>IOFunction. unchecked(@NonNull IOFunction<T,R> o)
-