| 524 | absl::AnyInvocable<T(U, V, W, const Function::InvokeContext&) const>; |
| 525 | |
| 526 | static std::unique_ptr<cel::Function> WrapFunction(FunctionType fn) { |
| 527 | return std::make_unique<TernaryFunctionImpl>(std::move(fn)); |
| 528 | } |
| 529 | |
| 530 | template <typename F> |
| 531 | static std::enable_if_t< |
nothing calls this directly
no test coverage detected