Uses of Interface
cloud.opencode.base.functional.function.CheckedBiConsumer
Packages that use CheckedBiConsumer
Package
Description
OpenCode Functional - Functional Programming Utilities for JDK 25+
OpenCode 函数式编程工具库
Function Utilities - Advanced function operations
函数工具 - 高级函数操作
-
Uses of CheckedBiConsumer in cloud.opencode.base.functional
Methods in cloud.opencode.base.functional that return CheckedBiConsumerModifier and TypeMethodDescriptionstatic <T,U> CheckedBiConsumer <T, U> OpenFunctional.checkedBiConsumer(CheckedBiConsumer<T, U> c) Create a CheckedBiConsumer 创建可抛异常的双参消费者Methods in cloud.opencode.base.functional with parameters of type CheckedBiConsumerModifier and TypeMethodDescriptionstatic <T,U> CheckedBiConsumer <T, U> OpenFunctional.checkedBiConsumer(CheckedBiConsumer<T, U> c) Create a CheckedBiConsumer 创建可抛异常的双参消费者 -
Uses of CheckedBiConsumer in cloud.opencode.base.functional.function
Methods in cloud.opencode.base.functional.function that return CheckedBiConsumerModifier and TypeMethodDescriptiondefault CheckedBiConsumer<T, U> CheckedBiConsumer.andThen(CheckedBiConsumer<? super T, ? super U> after) Chain with another consumer (execute this, then after) 与另一个消费者链接(先执行本函数,再执行 after)static <T,U> CheckedBiConsumer <T, U> CheckedBiConsumer.of(BiConsumer<T, U> consumer) Wrap a standard BiConsumer as CheckedBiConsumer 将标准 BiConsumer 包装为 CheckedBiConsumerMethods in cloud.opencode.base.functional.function with parameters of type CheckedBiConsumerModifier and TypeMethodDescriptiondefault CheckedBiConsumer<T, U> CheckedBiConsumer.andThen(CheckedBiConsumer<? super T, ? super U> after) Chain with another consumer (execute this, then after) 与另一个消费者链接(先执行本函数,再执行 after)