| 285 | absl::AnyInvocable<T(U, const Function::InvokeContext&) const>; |
| 286 | |
| 287 | static std::unique_ptr<cel::Function> WrapFunction(FunctionType fn) { |
| 288 | return std::make_unique<UnaryFunctionImpl>(std::move(fn)); |
| 289 | } |
| 290 | |
| 291 | template <typename F> |
| 292 | static std::enable_if_t< |
nothing calls this directly
no test coverage detected