| 97 | } |
| 98 | |
| 99 | absl::Status RegisterSetsContainsFunction(FunctionRegistry& registry) { |
| 100 | return registry.Register( |
| 101 | BinaryFunctionAdapter< |
| 102 | absl::StatusOr<Value>, const ListValue&, |
| 103 | const ListValue&>::CreateDescriptor("sets.contains", |
| 104 | /*receiver_style=*/false), |
| 105 | BinaryFunctionAdapter<absl::StatusOr<Value>, const ListValue&, |
| 106 | const ListValue&>::WrapFunction(SetsContains)); |
| 107 | } |
| 108 | |
| 109 | absl::Status RegisterSetsIntersectsFunction(FunctionRegistry& registry) { |
| 110 | return registry.Register( |
no test coverage detected