| 435 | absl::AnyInvocable<T(U, V, const Function::InvokeContext&) const>; |
| 436 | |
| 437 | static std::unique_ptr<cel::Function> WrapFunction(FunctionType fn) { |
| 438 | return std::make_unique<BinaryFunctionImpl>(std::move(fn)); |
| 439 | } |
| 440 | |
| 441 | template <typename F> |
| 442 | static std::enable_if_t< |
nothing calls this directly
no test coverage detected