Logo

Programming-Idioms

  • Fortran
  • Dart
  • Erlang
  • Smalltalk

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.

items reject: [: y | y = x ]

returns a new list
items = pack (items,items != x)
items.removeWhere((y)=>y==x);
(remove #{x} items)

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

New implementation...