丰富函数式编程接口。

This commit is contained in:
2023-04-23 22:44:38 +08:00
parent 0e2c52b717
commit ffe077bf5e
12 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package xyz.zhouxy.plusone.commons.function;
import java.util.OptionalInt;
import java.util.function.Supplier;
@FunctionalInterface
public interface OptionalIntSupplier extends Supplier<OptionalInt> {
}