remove

[procedure] remove pred list

SRFI-1: Returns list without the elements that satisfy predicate pred.

See also remove!, filter, partition.

[generic] remove pred coll

Gauche extends this to take arbitrary collection (with gauche.collection module).

[procedure] remove obj list

ChezScheme, STk: removes obj from list, using equal? to compare. This is equivalent to SRFI-1's delete.

See also remq, remv.