Hi, in some libraries bindings, when there are some functions with optional parameters we can see that the additional unit at the end is not transmited to the...
Florent Monnier
fmonnier@...
Jun 1, 2009 10:04 am
11108
Hello. Is it possible to index array elements by other types other than int? In particular, can constant constructors of an algebraic data type be used?...
On Mon, Jan 05, 2009 at 12:44:35PM +0000, Richard Jones wrote: [...] ... Would you enhance the enum extension to include conversion functions from string and...
Hello. I want to learn camlp4, but it seems that the documentation is out of date. What documentation do you recommend for learning camlp4? Regards, José...
... http://brion.inria.fr/gallium/index.php/Camlp4 -- Dr Jon Harrop, Flying Frog Consultancy Ltd. http://www.ffconsultancy.com/?e...
Jon Harrop
jon@...
Jun 2, 2009 8:10 pm
11116
Hello I have a program where I wish to set up two processes that send messages between a group of clients and a server that this program is a client of. I...
... After reading some of the tutorials on camlp4 (and not understanding much of them), I was able to implement the enhancements sugested above to the enum...
... I have some blog posts about it here: http://ambassadortothecomputers.blogspot.com/search/label/camlp4 Not very complete--I hope to do more soon--but a...
... Yes indeed ... still waiting for someone to write the definitive camlp4 book :-) ... Martin's tutorial is good, but it covers the previous (3.09) version. ...
Hello! I have two problems/questions about ocaml toplevel: 1. I have problems with keys like del, up arrow ..., when i push del the input is ^[[3~, for up...
... Such support is typically offered by readline or libedit, but so far as I know the OCaml toplevel supports neither. I typically work around it by running...
Michael Ekstrand
michael+ocaml@...
Jun 4, 2009 12:17 am
11122
For your first question, you can use ledit. If you install OCaml through godi, it is one of the packages available there or else you can install it on your...
... Use 'rlwrap ocaml'. ... bool is the type not a value. Try instead: # true;; # false;; ... This isn't possible in the basic OCaml toplevel. However I...
... Hash: SHA1 Enhtop works great! I highly recommend it. In fact, I couldn't live without it and ported to 3.11 myself [1]. Peng [1] ...
Peng Zang
peng.zang@...
Jun 4, 2009 8:51 pm
11126
Hello Caml people! I am a research engineer in Software Testing Solution Company in Korea. I am looking for a method that translate a huge C structured data...
... Can you give us any more details about this structure, or a small example? I have found ocaml sexplib[1] to be quite useful as a simple way to extract data...
Is there anything that can be done when you have two libraries that have modules with the same name, and you want to use both? I'm having this issue right now...
thanks for your kindness reply~ here is a code snippet for translating(full source code constitute almost 100000 lines of structure and union, enum). this is...
... There's nothing you can do - this is a fundamental limitation of the compiler that it expects there to be exactly one module with each name and with a...
I'm having a compilation problem. I'm attempting to compile several files separately and then link them later. My commands: ocamlc -g -c ast.ml ocamlc -cc g++...
... To be honest I don't think this is the problem. I think you've got a real bug in your code. For example: $ cat test.ml type t = Num.num $ ocamlc -c...
... Look for a file called num.cmi in the directory where ocaml is installed (i.e. result of the commande "ocamlc -where"). If you don't find it directly, it...
Hello, I've posted similar message to the OCaml main list, but did not get any response in a few days already. Therefore I'm trying my luck here. So here is...