Comment on The Weird and Wonderful Characters of ClojureparentComments−moomin12yObviously, bear in mind that (comp foo second) may be preferable.−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
Obviously, bear in mind that (comp foo second) may be preferable.
Slightly different use-case, as:
Is equivalent to: Not:+1.
How about: