| 78 | enum class FunctionResponse { kUnknown, kTrue, kFalse }; |
| 79 | |
| 80 | CelFunctionDescriptor CreateDescriptor( |
| 81 | absl::string_view name, CelValue::Type type = CelValue::Type::kString) { |
| 82 | return CelFunctionDescriptor(std::string(name), false, {type}); |
| 83 | } |
| 84 | |
| 85 | class FunctionImpl : public CelFunction { |
| 86 | public: |
no outgoing calls
no test coverage detected