summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/lpop.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/lpop.md')
-rw-r--r--iredis/data/commands/lpop.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/iredis/data/commands/lpop.md b/iredis/data/commands/lpop.md
new file mode 100644
index 0000000..6049176
--- /dev/null
+++ b/iredis/data/commands/lpop.md
@@ -0,0 +1,16 @@
+Removes and returns the first element of the list stored at `key`.
+
+@return
+
+@bulk-string-reply: the value of the first element, or `nil` when `key` does not
+exist.
+
+@examples
+
+```cli
+RPUSH mylist "one"
+RPUSH mylist "two"
+RPUSH mylist "three"
+LPOP mylist
+LRANGE mylist 0 -1
+```