Function Entry: VL-REMOVE-IF
← Prev | ↑ Chapter | Next → | Index | Symbols
Function Entry: VL-REMOVE-IF
Name
vl-remove-if
Class
Visual LISP List Function
Syntax
(vl-remove-if predicate list)
Arguments and Values
predicate: subroutine or symbollist: list
Description
Returns all elements of the supplied list that fail the test function.
Return Values
Filtered list.
Side Effects
Side effects are those of calling predicate.
Notes
- Autodesk documents that
predicatemay be supplied as:- a symbol naming a function,
- a quoted lambda form,
- a
(function (lambda …))form.
- Autodesk documents that the result contains all elements for which
predicatereturns nil.
Availability
- AutoCAD 2026: documented (per Autodesk reference page).
- BricsCAD V26: presumed compatible (no contradicting page found).
- Status: AutoCAD documented; BricsCAD presumed-both pending Phase 4 verification.
Source Notes
- [vl-remove-if (AutoLISP)](https://help.autodesk.com/cloudhelp/2019/ENU/AutoCAD-AutoLISP-Reference/files/GUID-9934F630-4697-47BA-84E6-A0430A3346EE.htm)
- Status: documented.