Uses of Interface
org.apache.commons.io.function.IOBinaryOperator
Package
Description
Provides IO-only related functional interfaces for lambda expressions and method references.
-
Uses of IOBinaryOperator in org.apache.commons.io.function
Modifier and TypeMethodDescriptionstatic <T> IOBinaryOperator<T>
IOBinaryOperator.maxBy
(IOComparator<? super T> comparator) Creates aIOBinaryOperator
which returns the greater of two elements according to the specifiedComparator
.static <T> IOBinaryOperator<T>
IOBinaryOperator.minBy
(IOComparator<? super T> comparator) Creates aIOBinaryOperator
which returns the lesser of two elements according to the specifiedComparator
.Modifier and TypeMethodDescriptionIOStream.reduce
(IOBinaryOperator<T> accumulator) default T
IOStream.reduce
(T identity, IOBinaryOperator<T> accumulator) default <U> U
IOStream.reduce
(U identity, IOBiFunction<U, ? super T, U> accumulator, IOBinaryOperator<U> combiner)