Uses of Interface
org.apache.commons.io.function.IOUnaryOperator
-
Packages that use IOUnaryOperator Package Description org.apache.commons.io.function Provides IO-only related functional interfaces for lambda expressions and method references. -
-
Uses of IOUnaryOperator in org.apache.commons.io.function
Methods in org.apache.commons.io.function that return IOUnaryOperator Modifier and Type Method Description static <T> IOUnaryOperator<T>
IOUnaryOperator. identity()
Creates a unary operator that always returns its input argument.Methods in org.apache.commons.io.function with parameters of type IOUnaryOperator Modifier and Type Method Description static <T> IOStream<T>
IOStream. iterate(T seed, IOUnaryOperator<T> f)
LikeStream.iterate(Object, UnaryOperator)
but for IO.
-