Browse thread
Configuring emacs to work with caml
-
C. Fr
-
Alexander Voinov
-
blue storm
-
Damien Doligez
- Alexander Voinov
-
Damien Doligez
-
blue storm
-
Alexander Voinov
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2010-01-25 (21:46) |
From: | Alexander Voinov <avoinov@g...> |
Subject: | RE: [Caml-list] A syntax extension to simplify List manipulation |
Hi All, I've updated this extension to remove the dependency on ExtLib (as suggested previously). The price is that iteratei is not available with the core List module. If you do need iteratei, first uncomment the # WITH_ITERATEI = 1 line in the Makefile (and do a fresh build), and, second, always open ExtLib;; The tarball is: http://www.voinov.org/FP/spbSyntax-1.0.1.tgz (and also http://www.voinov.org/FP/spbSyntax.tgz) Regarding camlp4, I don't remember why this extension didn't work with it after that big refactoring, which gave birth to camlp5. I'm making a TODO for myself to take a look at this. Thank you! Alexander -----Original Message----- From: Damien Doligez [mailto:damien.doligez@inria.fr] Sent: Monday, January 25, 2010 9:43 AM To: blue storm Cc: Alexander Voinov; caml-list@yquem.inria.fr Subject: Re: [Caml-list] A syntax extension to simplify List manipulation On 2010-01-17, at 09:24, blue storm wrote: > 2) The use of the Extlib module is hardcoded in the syntax extension. > I would find it nicer if you only referred to "List.map" instead of > "Extlib.List.map", and let the user "open Extlib" if he wants to > override the stdlib. That would allow one to use other implementations > of List. You can do this if you want to use the stdlib instead of extlib: module Extlib = struct module List = List end;; Rather ugly, but it should work... -- Damien