新增 ThrowingFunction

This commit is contained in:
2025-01-07 16:34:50 +08:00
parent 0d1935bc8c
commit 4766f78411
2 changed files with 30 additions and 0 deletions

View File

@@ -32,6 +32,7 @@
* | UnaryOperator | CharUnaryOperator | char applyAsChar(char) |
* | Throwing | Executable | void execute() throws E |
* | Throwing | ThrowingConsumer | void accept(T) throws E |
* | Throwing | ThrowingFunction | R apply(T) throws E |
* | Throwing | ThrowingPredicate | boolean test(T) throws E |
* | Throwing | ThrowingSupplier | T get() throws E |
* | Optional | OptionalSupplier | Optional<T> get() throws E |