RPUSH [ ...] */
| 276 | |
| 277 | /* RPUSH <key> <element> [<element> ...] */ |
| 278 | void rpushxCommand(client *c) { |
| 279 | pushGenericCommand(c,LIST_TAIL,1); |
| 280 | } |
| 281 | |
| 282 | /* LINSERT <key> (BEFORE|AFTER) <pivot> <element> */ |
| 283 | void linsertCommand(client *c) { |
nothing calls this directly
no test coverage detected