Mapping multiple functions, in order, over a single list [closed]
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I would like to map three different functions, in order, over a single list. To demonstrate what I mean, say we want to do the following three mappings: (map foo mylist) (map bar mylist) (map foobar mylist) If we define mylist as '(1 2 3) , and we run the above functions one at a time, we get: (map foo mylist) =