LPUSHX [ ...] */
| 271 | |
| 272 | /* LPUSHX <key> <element> [<element> ...] */ |
| 273 | void lpushxCommand(client *c) { |
| 274 | pushGenericCommand(c,LIST_HEAD,1); |
| 275 | } |
| 276 | |
| 277 | /* RPUSH <key> <element> [<element> ...] */ |
| 278 | void rpushxCommand(client *c) { |
nothing calls this directly
no test coverage detected