docs update

This commit is contained in:
vaclavt
2022-01-11 23:45:16 +01:00
parent 79977cc655
commit be4bbf25f8
2 changed files with 3 additions and 4 deletions

View File

@@ -63,7 +63,7 @@
|`(first list)`|Returns first element of a list|First element|
|`(last list)`|Returns last element of list|Last element|
|`(range low high)`|Returns list with elements in range low .. high|`(range 1 5) => (1 2 3 4)`|
|`(member list item)`|Returns true (1) when list contains item||
|`(member list item)`|Returns true when list contains item||
|`(uniq list)`|Returns list with removed duplicates ||
|`(make-list len)`|Return list with len nil elements|`(make-list 3) => (nil nil nil)`|
|`(make-list-of len value)`|Return list with len value elements||