RPOP

    Removes and returns the last elements of the list stored at .

    When called without the count argument:

    When called with the argument:

    1. dragonfly> RPUSH mylist "one" "two" "three" "four" "five"
    2. dragonfly> RPOP mylist
    3. dragonfly> RPOP mylist 2
    4. 1) "four"
    5. dragonfly> LRANGE mylist 0 -1
    6. 1) "one"