(rw *bufio.ReadWriter, item *Item)
| 634 | } |
| 635 | |
| 636 | func (c *Client) append(rw *bufio.ReadWriter, item *Item) error { |
| 637 | return c.populateOne(rw, "append", item) |
| 638 | } |
| 639 | |
| 640 | // Prepend prepends the given item to the existing item, if a value already |
| 641 | // exists for its key. ErrNotStored is returned if that condition is not met. |
nothing calls this directly
no test coverage detected