Discuss this page on this pages TalkPage
Syntax | (lnkRemoveNil list) → list |
---|---|
Arguments | list: The list where you want to remove all values that are Nil. |
Returns | A list with all the elements that equal Nil removed. |
Category | list |
Description | Goes through the list and removes all the Nil elements and returns the result. |
(lnkRemoveNil '(a Nil (c Nil) Nil d))
Returns the list (a (c Nil) d). Return to Functions list