Uses of Interface
org.apache.commons.io.function.IOBinaryOperator
-
Packages that use IOBinaryOperator Package Description org.apache.commons.io.function Provides IO-only related functional interfaces for lambda expressions and method references. -
-
Uses of IOBinaryOperator in org.apache.commons.io.function
Methods in org.apache.commons.io.function that return IOBinaryOperator Modifier and Type Method Description static <T> IOBinaryOperator<T>IOBinaryOperator. maxBy(IOComparator<? super T> comparator)Creates aIOBinaryOperatorwhich returns the greater of two elements according to the specifiedComparator.static <T> IOBinaryOperator<T>IOBinaryOperator. minBy(IOComparator<? super T> comparator)Creates aIOBinaryOperatorwhich returns the lesser of two elements according to the specifiedComparator.Methods in org.apache.commons.io.function with parameters of type IOBinaryOperator Modifier and Type Method Description default java.util.Optional<T>IOStream. reduce(IOBinaryOperator<T> accumulator)LikeStream.reduce(java.util.function.BinaryOperator).default TIOStream. reduce(T identity, IOBinaryOperator<T> accumulator)LikeStream.reduce(Object, java.util.function.BinaryOperator).default <U> UIOStream. reduce(U identity, IOBiFunction<U,? super T,U> accumulator, IOBinaryOperator<U> combiner)LikeStream.reduce(Object, BiFunction, java.util.function.BinaryOperator).
-