| 190 | absl::AnyInvocable<T(const Function::InvokeContext&) const>; |
| 191 | |
| 192 | static std::unique_ptr<cel::Function> WrapFunction(FunctionType fn) { |
| 193 | return std::make_unique<UnaryFunctionImpl>(std::move(fn)); |
| 194 | } |
| 195 | |
| 196 | template <typename F> |
| 197 | static std::enable_if_t< |
nothing calls this directly
no test coverage detected