Function Entry: ACET-LIST-ISORT
← Prev | ↑ Chapter | Next → | Index | Symbols
Function Entry: ACET-LIST-ISORT
Name
acet-list-isort
Class
BricsCAD ExpressTools API Function
Syntax
(acet-list-isort lst index)
Arguments and Values
Arguments are described in the vendor page; see Source Notes.
Description
Returns the list lst as sorted by index. lst input list is a "list of sub-lists", index specifies the entry in each sub-list, which is used as sorting value. Examples : (setq lst (list '(1 2 5) '(2 1 4) '(3 4 3) '(4 3 2) '(5 5 1))) (acet-list-isort lst 0) returns : ((1 2 5) (2 1 4) (3 4 3) (4 3 2) (5 5 1)) (acet-list-isort lst 1) returns : ((2 1 4) (1 2 5) (4 3 2) (3 4 3) (5 5 1)) (acet-list-isort lst 2) returns : ((5 5 1) (4 3 2) (3 4 3) (2 1 4) (1 2 5))
Return Values
Vendor-defined; see Source Notes.
Availability
- AutoCAD 2026: not documented.
- BricsCAD V26: documented.
- Status: BricsCAD-only.
Source Notes
- [acet-list-isort (BricsCAD V26 DevRef)](https://developer.bricsys.com/bricscad/help/en_US/V26/DevRef/source/acetlistisort.htm)
- Status: documented (Phase 3 follow-up: body filled from the BricsCAD V26 per-symbol page on 2026-04-26).