Logo

Programming-Idioms

  • C
  • Lisp

Idiom #136 Remove all occurrences of a value from a list

Remove all occurrences of the value x from list items.
This will alter the original list or return a new list, depending on which is more idiomatic.

(remove-if (lambda (val) (= val x)) items)

Functional implementation that returns a new list. = function assumes that items is a list of numbers.
(remove #{x} items)

Puts the x value in a set that serves as simple predicate

New implementation...