| 2845 | } |
| 2846 | |
| 2847 | void zunionCommand(client *c) { |
| 2848 | zunionInterDiffGenericCommand(c, NULL, 1, SET_OP_UNION); |
| 2849 | } |
| 2850 | |
| 2851 | void zinterCommand(client *c) { |
| 2852 | zunionInterDiffGenericCommand(c, NULL, 1, SET_OP_INTER); |
nothing calls this directly
no test coverage detected