X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/56c2735d89dd41ed2f552c4adccba63c817ed602..81d456450ac42b7cf78367ae3a89af1a543c9ff1:/doc/LpopCommand.html diff --git a/doc/LpopCommand.html b/doc/LpopCommand.html deleted file mode 100644 index 58dffb93..00000000 --- a/doc/LpopCommand.html +++ /dev/null @@ -1,41 +0,0 @@ - - - -
- - - -Atomically return and remove the first (LPOP) or last (RPOP) elementof the list. For example if the list contains the elements "a","b","c" LPOPwill return "a" and the list will become "b","c".-
If the key does not exist or the list is already empty the specialvalue 'nil' is returned.-