EMA-XPS Online


REMOVE-IF

REMOVE-IF
=========

syntax: (remove-if <predicate> <sequence>)

This function removes the elements of a sequence,
which fulfill the predicate. It returns a new
sequence.

example:    >(remove-if #'numberp '(1 2 3 4 a b c d))
            (A B C D)


EMA-XPS Online