@FunctionalInterface public interface SerBiOp<T> extends BinaryOperator<T>, Serializable
| 限定符和类型 | 方法和说明 |
|---|---|
default T |
apply(T t,
T u)
Applies this function to the given arguments.
|
T |
applying(T t,
T u)
Applies this function to the given arguments.
|
static <T> SerBiOp<T> |
justAfter()
just after
|
static <T> SerBiOp<T> |
justBefore()
just before
|
static <T> SerBiOp<T> |
maxBy(Comparator<? super T> comparator)
Returns a
SerBiOp which returns the greater of two elements
according to the specified Comparator. |
static <T> SerBiOp<T> |
minBy(Comparator<? super T> comparator)
Returns a
SerBiOp which returns the lesser of two elements
according to the specified Comparator. |
andThendefault T apply(T t, T u)
apply 在接口中 BiFunction<T,T,T>static <T> SerBiOp<T> minBy(Comparator<? super T> comparator)
SerBiOp which returns the lesser of two elements
according to the specified Comparator.minBy 在接口中 BinaryOperator<T>static <T> SerBiOp<T> maxBy(Comparator<? super T> comparator)
SerBiOp which returns the greater of two elements
according to the specified Comparator.maxBy 在接口中 BinaryOperator<T>static <T> SerBiOp<T> justBefore()
T - typestatic <T> SerBiOp<T> justAfter()
T - typeCopyright © 2023 dromara. All rights reserved.