Iteration with Mapping Functions
(MAP function list) applies function to every member in list and returns the result in a list:
- E.g.,
- (map add1 '(1 2 3))
(2 3 4)
(APPLY function list) applies function to list:
- E.g.,
- (apply max '(3 100 45))
100
Note that function names are not quoted