Uses of Interface
cloud.opencode.base.core.func.CheckedFunction
Packages that use CheckedFunction
-
Uses of CheckedFunction in cloud.opencode.base.core.func
Methods in cloud.opencode.base.core.func that return CheckedFunctionModifier and TypeMethodDescriptiondefault <V> CheckedFunction<T, V> CheckedFunction.andThen(CheckedFunction<? super R, ? extends V> after) Composes functions (executes this function first, then after) 组合函数(先执行本函数,再执行 after)default <V> CheckedFunction<V, R> CheckedFunction.compose(CheckedFunction<? super V, ? extends T> before) Composes functions (executes before first, then this function) 组合函数(先执行 before,再执行本函数)static <T> CheckedFunction<T, T> CheckedFunction.identity()Creates 创建恒等函数static <T,R> CheckedFunction <T, R> Wraps a standard Function as a CheckedFunction 将普通 Function 包装为 CheckedFunctionMethods in cloud.opencode.base.core.func with parameters of type CheckedFunctionModifier and TypeMethodDescriptiondefault <V> CheckedFunction<T, V> CheckedFunction.andThen(CheckedFunction<? super R, ? extends V> after) Composes functions (executes this function first, then after) 组合函数(先执行本函数,再执行 after)default <V> CheckedFunction<V, R> CheckedFunction.compose(CheckedFunction<? super V, ? extends T> before) Composes functions (executes before first, then this function) 组合函数(先执行 before,再执行本函数)