Functions Documentation
View Function Edit Function
Name lnkRemoveNil
Syntax (lnkRemoveNil list) -> list
Argument List 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.
Example
(lnkRemoveNil '(a Nil (c Nil) Nil d))

Returns the list (a (c Nil) d).
Comment A bit of specific function. If you need it, use it.