mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-12-18 16:41:58 +00:00
commit
177ff62007
@ -49,6 +49,7 @@ LINSERT key BEFORE|AFTER pivot value # insert an element before or after anothe
|
|||||||
LLEN key # return the current length of the list
|
LLEN key # return the current length of the list
|
||||||
LPOP key # remove the first element from the list and returns it
|
LPOP key # remove the first element from the list and returns it
|
||||||
LSET key index value # set the value of an element in a list by its index
|
LSET key index value # set the value of an element in a list by its index
|
||||||
|
LREM key number_of_occurrences value # delete occurrences of value if the list stored in key
|
||||||
LTRIM key start stop # trim a list to the specified range
|
LTRIM key start stop # trim a list to the specified range
|
||||||
RPOP key # remove the last element from the list and returns it
|
RPOP key # remove the last element from the list and returns it
|
||||||
RPOPLPUSH source destination # remove the last element in a list, prepend it to another list and return it
|
RPOPLPUSH source destination # remove the last element in a list, prepend it to another list and return it
|
||||||
|
Loading…
Reference in New Issue
Block a user