Discuss this page on this page's Talk Page
Syntax | (lnkRemove list index Nil) → list |
---|---|
Arguments | list: The list you want to remove the element at `index' from. |
index: the position of the element you want to remove, counting from 0. | |
Nil: this is a bug, but must be present. It has no effect on the function. The only reasonable value to pass is Nil. | |
Returns | A new list without the element found at `index'. |
Category | list |
Description | Removes the element at index and returns the resultant list. |