delete

[procedure] delete x list [=]

SRFI-1: delete uses the comparison procedure =, which defaults to equal?, to find all elements of list that are equal to x, and deletes them from list. The dynamic order in which the various applications of = are made is not specified.

Note that some implementations calls this remove.

See also remove, delete!.