static <T> void |
Uncheck.accept(IOConsumer<T> consumer,
T t) |
Accepts an IO consumer with the given argument.
|
default IOConsumer<T> |
IOConsumer.andThen(IOConsumer<? super T> after) |
Returns a composed IOConsumer that performs, in sequence, this operation followed by the after
operation.
|
default IOConsumer<T> |
IOFunction.andThen(IOConsumer<? super R> after) |
Returns a composed IOFunction that first applies this function to its input, and then applies the
after consumer to the result.
|
static <T> void |
IOConsumer.forAll(IOConsumer<T> action,
java.lang.Iterable<T> iterable) |
Performs an action for each element of the collection gathering any exceptions.
|
static <T> void |
IOConsumer.forAll(IOConsumer<T> action,
java.util.stream.Stream<T> stream) |
Performs an action for each element of the collection gathering any exceptions.
|
static <T> void |
IOConsumer.forAll(IOConsumer<T> action,
T... array) |
Performs an action for each element of the array gathering any exceptions.
|
default void |
IOStream.forAll(IOConsumer<T> action) |
Performs an action for each element gathering any exceptions.
|
default void |
IOStream.forAll(IOConsumer<T> action,
java.util.function.BiFunction<java.lang.Integer,java.io.IOException,java.io.IOException> exSupplier) |
Performs an action for each element gathering any exceptions.
|
static <T> void |
IOConsumer.forEach(java.lang.Iterable<T> iterable,
IOConsumer<T> action) |
Performs an action for each element of the collection, stopping at the first exception.
|
static <T> void |
IOConsumer.forEach(java.util.stream.Stream<T> stream,
IOConsumer<T> action) |
Performs an action for each element of the stream, stopping at the first exception.
|
static <T> void |
IOConsumer.forEach(T[] array,
IOConsumer<T> action) |
Performs an action for each element of this array, stopping at the first exception.
|
default void |
IOStream.forEach(IOConsumer<? super T> action) |
Like Stream.forEach(java.util.function.Consumer) but throws IOException .
|
default void |
IOStream.forEachOrdered(IOConsumer<? super T> action) |
Like Stream.forEachOrdered(java.util.function.Consumer) .
|
default void |
IOIterator.forEachRemaining(IOConsumer<? super E> action) |
Like Iterator.forEachRemaining(Consumer) .
|
default void |
IOSpliterator.forEachRemaining(IOConsumer<? super T> action) |
Like Spliterator.forEachRemaining(Consumer) .
|
default IOStream<T> |
IOStream.peek(IOConsumer<? super T> action) |
Like Stream.peek(java.util.function.Consumer) .
|
default boolean |
IOSpliterator.tryAdvance(IOConsumer<? super T> action) |
Like Spliterator.tryAdvance(Consumer) .
|