(key string)
| 679 | } |
| 680 | |
| 681 | func (c Client) RPOP(key string) (element ReturnValue, err error) { |
| 682 | element, _, err = c.listPop(key, Right) |
| 683 | return |
| 684 | } |
| 685 | |
| 686 | func (c Client) RPOPLPUSH(sourceKey string, destinationKey string) (element ReturnValue, err error) { |
| 687 | if sourceKey == destinationKey { |