Returns an integer indicating the number of elements in a list
(length lst)
Command: (length '(a b c d))
4
Command: (length '(a b (c d)))
3
Command: (length '())
0
See Also
-
The vl-list-length function.