fixes & updates
added uniq function task.json doc updates
This commit is contained in:
@@ -40,7 +40,8 @@
|
||||
|`(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)`|||
|
||||
|`(member list item)`|Returns true (1) 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)`|||
|
||||
|`(map ..)`||`(map (lambda (x) (+ x 10)) '(1 2 3 4 5 6)) => (11 12 13 14 15 16)`|
|
||||
|
||||
Reference in New Issue
Block a user