[Caml-list] Infix function composition operator

2010-11-09 Thread Arlen Christian Mart Cuss
Hi all, I know this was asked at least 12 years ago[1], but is there any consensus or reason for there not being a compose function in standard OCaml, nor an infix operator? At the moment I tend to let compose or let (-) f g x = f (g x), but I wish I didn't have to! Thanks, Arlen [1]

Re: [Caml-list] Infix function composition operator

2010-11-09 Thread Arlen Christian Mart Cuss
Core library. That looks neat, and I imagine it to be useful, but I can't think of a concrete use-case off the cuff. Could you give an example? y Cheers, Arlen On Tue, Nov 9, 2010 at 10:19 PM, Arlen Christian Mart Cuss ar...@noblesamurai.com wrote: Hi all, I know