Re: [Caml-list] Re: Unicode, update

2010-10-19 Thread Ashish Agarwal
Have you considered adding these to the Batteries project? It would be good to get general purpose functionality added directly there. Also that way you don't have to feel you've done a lot of things; a single useful function could be added. On Mon, Oct 18, 2010 at 9:59 PM, Paul Steckler

Re: [Caml-list] Re: Unicode, update

2010-10-19 Thread Michael Ekstrand
On 10/19/2010 09:33 AM, Ashish Agarwal wrote: Have you considered adding these to the Batteries project? It would be good to get general purpose functionality added directly there. Also that way you don't have to feel you've done a lot of things; a single useful function could be added. I

[Caml-list] Code-execution (evaluation) time

2010-10-19 Thread Oliver Bandel
Hello, I want to refresh my OCaml knowledge after I (again) paused for a while. I want to know, when certain parts of the code are executed, for example if I have more than one let _ = ... statement in my code (for example in different comp0ilaion units each one of them). I also found an

RE: [Caml-list] Code-execution (evaluation) time

2010-10-19 Thread David Allsopp
Oliver Bandel wrote: Hello, I want to refresh my OCaml knowledge after I (again) paused for a while. I want to know, when certain parts of the code are executed, for example if I have more than one let _ = ... statement in my code (for example in different comp0ilaion units each one of

Re: [Caml-list] Code-execution (evaluation) time

2010-10-19 Thread mark
It's also worth noting a few other things about execution order: 1) function call arguments - All arguments in a function call are evaluated, even if not needed (in right-to-left order - as David says - but don't rely on this). 2) function bodies - These are executed when at least as many