Hi,
as most of you know, the syntax of mapcad function is as following:
(mapcar [i]function [/i][i]list1[/i]... [i]listn[/i])
My question can be explained after showing these two examples:
(mapcar 'strcase '("a" "B" "c" "D"))
returns: ("A" "B" "C" "D")
(mapcar 'strcase '("a" "B" "c" "D") '(T T T T))
returns: ("a" "b" "c" "d")
Is any method to pass repeated objects (here T as the socond argument) to mapcar just one time?