| 620 | absl::AnyInvocable<T(U, V, W, X, const Function::InvokeContext&) const>; |
| 621 | |
| 622 | static std::unique_ptr<cel::Function> WrapFunction(FunctionType fn) { |
| 623 | return std::make_unique<QuaternaryFunctionImpl>(std::move(fn)); |
| 624 | } |
| 625 | |
| 626 | template <typename F> |
| 627 | static std::enable_if_t< |
nothing calls this directly
no test coverage detected