Package | Description |
---|---|
org.apache.commons.io.function |
Provides IO-only related functional interfaces for lambda expressions and method references.
|
Modifier and Type | Method and Description |
---|---|
static <T> IOUnaryOperator<T> |
IOUnaryOperator.identity()
Creates a unary operator that always returns its input argument.
|
Modifier and Type | Method and Description |
---|---|
static <T> IOStream<T> |
IOStream.iterate(T seed,
IOUnaryOperator<T> f)
Like
Stream.iterate(Object, UnaryOperator) but for IO. |