Comment on The Weird and Wonderful Characters of ClojureparentComments−weavejester12ySlightly different use-case, as: (comp foo second) Is equivalent to: (fn [[_ x]] (foo x)) Not: (fn [_ x] (foo x))−ar7hur12y+1.How about: (comp foo second list)
Comments
Slightly different use-case, as:
Is equivalent to: Not:+1.
How about: