Function composition Clojure?

Posted by StackedCrooked on Stack Overflow See other posts from Stack Overflow or by StackedCrooked
Published on 2010-05-12T19:33:30Z Indexed on 2010/05/12 19:44 UTC
Read the original article Hit count: 115

Filed under:

Can Clojure implement (g ° f) constructions like Haskell's g . f? I'm currently using workarounds like (fn [n] (not (zero? n))), which isn't nearly as nice :)

© Stack Overflow or respective owner

Related posts about clojure