(rw *bufio.ReadWriter, item *Item)
| 659 | } |
| 660 | |
| 661 | func (c *Client) cas(rw *bufio.ReadWriter, item *Item) error { |
| 662 | return c.populateOne(rw, "cas", item) |
| 663 | } |
| 664 | |
| 665 | func (c *Client) populateOne(rw *bufio.ReadWriter, verb string, item *Item) error { |
| 666 | if !legalKey(item.Key) { |
nothing calls this directly
no test coverage detected