(rontolisp) docs
← Functions

remove-if

(remove-if predicate sequence)

Returns a new sequence containing the elements of sequence that do not satisfy predicate (the satisfying elements are removed). The sequence may be a list or a string; a string yields a new string. The original sequence is not modified; use delete-if for the destructive version (lists only).