Returns all elements of the supplied list that fail the test function
(vl-remove-if predicate-function list)
Arguments
T for any user-specified condition. The predicate-function value can take one of the following forms:
The test function. This can be any function that accepts a single argument and returnsA list to be tested.
Return Values
nil.
A list containing all elements of list for which predicate-function returnsExamples
_$ (vl-remove-if 'vl-symbolp (list pi t 0 "abc"))
(3.14159 0 "abc")