| 129 | : CelFunction(MakeDescriptor(name)) {} |
| 130 | |
| 131 | static FunctionDescriptor MakeDescriptor(absl::string_view name) { |
| 132 | return FunctionDescriptor(name, true, |
| 133 | {CelValue::Type::kBool, CelValue::Type::kInt64, |
| 134 | CelValue::Type::kInt64}); |
| 135 | } |
| 136 | |
| 137 | absl::Status Evaluate(absl::Span<const CelValue> args, CelValue* result, |
| 138 | Arena* arena) const override { |
nothing calls this directly
no test coverage detected