I missed a short syntax to express fundamental operations over functions in Clojure. Because of that, I started to use º as a shorthand for comp (cause it's closer to the math operator but easily accessible) and ¬ for partial (because reminds me of missing parameters).
What are your thoughts about this? is it useful or does it have the risk of making code confusing?
(¬ f)to mean(comp not f)(if not simply(not f)!). – Michał Marczyk Aug 27 '10 at 12:30partial(andcompfor that matter). I remember Sean Devlin used&forcompandpforpartialin an episode of Full Disclojure -- if you really want to abbreviate the names in your code (as saved on disk -- see my answer for a possible way to decouple what's displayed from what's actually stored), these might be reasonable choices. – Michał Marczyk Aug 28 '10 at 1:52