| 155 | } |
| 156 | |
| 157 | absl::Status RegisterSetsFunctions(FunctionRegistry& registry, |
| 158 | const RuntimeOptions& options) { |
| 159 | CEL_RETURN_IF_ERROR(RegisterSetsContainsFunction(registry)); |
| 160 | CEL_RETURN_IF_ERROR(RegisterSetsIntersectsFunction(registry)); |
| 161 | CEL_RETURN_IF_ERROR(RegisterSetsEquivalentFunction(registry)); |
| 162 | return absl::OkStatus(); |
| 163 | } |
| 164 | |
| 165 | absl::Status RegisterSetsFunctions(CelFunctionRegistry* registry, |
| 166 | const InterpreterOptions& options) { |