| 107 | } |
| 108 | |
| 109 | absl::Status RegisterSetsIntersectsFunction(FunctionRegistry& registry) { |
| 110 | return registry.Register( |
| 111 | BinaryFunctionAdapter< |
| 112 | absl::StatusOr<Value>, const ListValue&, |
| 113 | const ListValue&>::CreateDescriptor("sets.intersects", |
| 114 | /*receiver_style=*/false), |
| 115 | BinaryFunctionAdapter<absl::StatusOr<Value>, const ListValue&, |
| 116 | const ListValue&>::WrapFunction(SetsIntersects)); |
| 117 | } |
| 118 | |
| 119 | absl::Status RegisterSetsEquivalentFunction(FunctionRegistry& registry) { |
| 120 | return registry.Register( |
no test coverage detected