Skip to content
Chris Petersen edited this page Oct 16, 2014 · 1 revision

list-delete-item removes an item from a list.

Parameter Description
lst The list operated on
item The item to be removed

Example

Example 1: Remove item "b" from a list '("a" "b" "c").

> (list-delete-item '("a" "b" "c") "b") 
("a" "c")
Clone this wiki locally