LPUSH [ ...] */
| 261 | |
| 262 | /* LPUSH <key> <element> [<element> ...] */ |
| 263 | void lpushCommand(client *c) { |
| 264 | pushGenericCommand(c,LIST_HEAD,0); |
| 265 | } |
| 266 | |
| 267 | /* RPUSH <key> <element> [<element> ...] */ |
| 268 | void rpushCommand(client *c) { |
nothing calls this directly
no test coverage detected