Package | Description |
---|---|
org.dromara.hutool.core.func |
函数封装
接口灵感来自于ActFramework 一个函数接口代表一个一个函数,用于包装一个函数为对象 在JDK8之前,Java的函数并不能作为参数传递,也不能作为返回值存在,此接口用于将一个函数包装成为一个对象,从而传递对象 |
Modifier and Type | Method and Description |
---|---|
static <T> SerBinaryOperator<T> |
SerBinaryOperator.justAfter()
just after
|
static <T> SerBinaryOperator<T> |
SerBinaryOperator.justBefore()
just before
|
static <T> SerBinaryOperator<T> |
SerBinaryOperator.maxBy(Comparator<? super T> comparator)
Returns a
SerBinaryOperator which returns the greater of two elements
according to the specified Comparator . |
static <T> SerBinaryOperator<T> |
SerBinaryOperator.minBy(Comparator<? super T> comparator)
Returns a
SerBinaryOperator which returns the lesser of two elements
according to the specified Comparator . |
Copyright © 2025. All rights reserved.