LPOP

    Removes and returns the first 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> LPOP mylist
    3. dragonfly> LPOP mylist 2
    4. 1) "two"
    5. dragonfly> LRANGE mylist 0 -1
    6. 1) "four"