Login
|
Sign Up
AutoLISP Function Detail
Name:
mapcar
Syntax:
(mapcar
func list1 ...
)
Description:
Applies function to each element in the list of items or lists that are provided.
Example(s):
(setq a 5 b 10 c 15)
(mapcar '1+ (list a b c))
(6 11 16)