(rw *bufio.ReadWriter, item *Item)
| 644 | } |
| 645 | |
| 646 | func (c *Client) prepend(rw *bufio.ReadWriter, item *Item) error { |
| 647 | return c.populateOne(rw, "prepend", item) |
| 648 | } |
| 649 | |
| 650 | // CompareAndSwap writes the given item that was previously returned |
| 651 | // by Get, if the value was neither modified or evicted between the |
nothing calls this directly
no test coverage detected