2015-10-11 3:31 GMT+02:00 Yotam Barnoy : > Interesting, but seems like overkill to me personally. I'm ok with @@ and |> > (which already breaks F#'s convention, since @@ would be <| in F#. What's > the reason we went with @@ instead again?). I think it's really useful that @@ is right associative. There was a post [1] arguing the opposite for Haskell's $, but that presumes we have a composition operator at a higher precedence level, and that OCaml transforms it into a plain application, for efficiency. > Function composition is > potentially more confusing, and I think keeping it with a consistent > associativity direction (that being the direction of normal function > application from right to left) has value. So I'm personally sort-of ok with > <<, but once you suggest something as beautifully concise as o, I'm > overwhelmed by the convenience factor. For composition, associativity wouldn't matter as the operation itself is associative. Except from performance. According to the attached benchmark, the normal composition operator should be right associative, at least on my computer. Then reversed composition should be left associative. But it's not a big difference (esp. considering that most uses are binary or ternary) and I'm not sure whether it applies across compiler versions. I expected the opposite result. I'm not thrilled about using a single letter o as an operator. If we want ∘, we should use that, though some might not like to deal with input methods. I've use *< and *> for some time, thinking of * as the closest cousin of ∘. [1] https://mail.haskell.org/pipermail/haskell-cafe/2006-February/014237.html