MCPcopy Create free account
hub / github.com/dbProjectRED/redimo.go / RPOP

Method RPOP

lists.go:681–684  ·  view source on GitHub ↗
(key string)

Source from the content-addressed store, hash-verified

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

Callers 1

TestLBasicsFunction · 0.80

Calls 1

listPopMethod · 0.95

Tested by 1

TestLBasicsFunction · 0.64