X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/56c2735d89dd41ed2f552c4adccba63c817ed602..81d456450ac42b7cf78367ae3a89af1a543c9ff1:/doc/LindexCommand.html diff --git a/doc/LindexCommand.html b/doc/LindexCommand.html deleted file mode 100644 index 4af80530..00000000 --- a/doc/LindexCommand.html +++ /dev/null @@ -1,41 +0,0 @@ - - - -
- - - -Return the specified element of the list stored at the specifiedkey. 0 is the first element, 1 the second and so on. Negative indexesare supported, for example -1 is the last element, -2 the penultimateand so on.-
If the value stored at key is not of list type an error is returned.If the index is out of range an empty string is returned.-
Note that even if the average time complexity is O(n) asking forthe first or the last element of the list is O(1).-