RPUSH [ ...] */
| 266 | |
| 267 | /* RPUSH <key> <element> [<element> ...] */ |
| 268 | void rpushCommand(client *c) { |
| 269 | pushGenericCommand(c,LIST_TAIL,0); |
| 270 | } |
| 271 | |
| 272 | /* LPUSHX <key> <element> [<element> ...] */ |
| 273 | void lpushxCommand(client *c) { |
nothing calls this directly
no test coverage detected