caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Caml Development Kit
@ 2001-03-26 13:03 Fabrice Le Fessant
  2001-03-27  2:12 ` Patrick M Doane
                   ` (3 more replies)
  0 siblings, 4 replies; 19+ messages in thread
From: Fabrice Le Fessant @ 2001-03-26 13:03 UTC (permalink / raw)
  To: caml-list


A few weeks ago, we started a project called "Caml Development Kit" or
CDK, which would gather in one big tarball or RPM several tools and
libraries, useful for Ocaml programming. 

For example, the CDK will include Ocaml, Camlp4, ledit, and many
user-contributed libraries. A new CDK will be released at each Ocaml
release (and probably more often from CVS sources), removing the need
to update, compile and install many different packages everytime to
have a coherent development envirronment.

If you are interested in contributing to this project, you can either
send me your code, or an URL where we can download your contribution.

We are particularly interested in general modules, providing useful
data structures, network(urlget,http_server,etc)/ crypto(des)/
multimedia(images) functions, or bindings to C libraries. 

The package includes a simple tool to generate HTML from .mli files.
Thus, contributions must provide .mli files for all interesting
modules, and these .mli files must be correctly documented.

Have a look at the just created web site:

http://pauillac.inria.fr/cdk

- Fabrice

-------------------
To unsubscribe, mail caml-list-request@inria.fr.  Archives: http://caml.inria.fr


^ permalink raw reply	[flat|nested] 19+ messages in thread
[parent not found: <F241eHu7RVLCMUWktUq0000fbc1@hotmail.com>]
* Re: [Caml-list] Re: generic programming
@ 2002-07-05 23:05 Dave Berry
  2002-08-02 14:49 ` [Caml-list] Streams Diego Olivier Fernandez Pons
  0 siblings, 1 reply; 19+ messages in thread
From: Dave Berry @ 2002-07-05 23:05 UTC (permalink / raw)
  To: Francois.Pottier, caml-list

At 10:33 05/07/2002, Francois Pottier wrote:
>My memories of STL are vague, but if an iterator is what I think it
>is, then implementing one in O'Caml is pretty straightforward. An
>iterator is a function that returns a function which maintains a
>piece of internal state. 

But can you compile it down to a single increment instruction on a pointer
(for an iterator over an array)?

Also, can you compare two iterators for equality?

Dave.
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


^ permalink raw reply	[flat|nested] 19+ messages in thread
* Streams
@ 2006-08-10 10:51 Error404
  2006-08-10 11:40 ` [Caml-list] Streams Jonathan Roewen
                   ` (2 more replies)
  0 siblings, 3 replies; 19+ messages in thread
From: Error404 @ 2006-08-10 10:51 UTC (permalink / raw)
  To: caml-list

Hi,

I'm looking for some streams related tutorial or any other info. 
By stream i mean something like this (I don't know exact definition):

open Lazy;;
type 'a stream = Nil | Cons of 'a Lazy.t * 'a stream Lazy.t;;

(* For example stream of 'integers from x' would look like this: *)

let rec intsfrom x =
  Cons(lazy x,lazy (intsfrom (x+1)));;

If you know any www/book or anything on this kind of streams please mail me (error92@tlen.pl).
Many thanks.


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2006-08-11  0:01 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-03-26 13:03 [Caml-list] Caml Development Kit Fabrice Le Fessant
2001-03-27  2:12 ` Patrick M Doane
2001-03-27  3:15   ` Brian Rogoff
2001-03-27  6:48     ` [Caml-list] Streams Daniel de Rauglaudre
     [not found]       ` <3AC04E85.EE51D597@univ-savoie.fr>
2001-03-27  8:37         ` Daniel de Rauglaudre
2001-03-27  6:30   ` [Caml-list] Caml Development Kit Daniel de Rauglaudre
     [not found] ` <Pine.BSF.3.96.1010326205436.83228A-100000@fledge.watson.or g>
2001-03-27  3:40   ` Chris Hecker
2001-03-27 18:54     ` Matthieu Villeneuve
2001-03-27  3:47 ` Jacques Garrigue
2001-03-27  7:33 ` Sven LUTHER
     [not found] <F241eHu7RVLCMUWktUq0000fbc1@hotmail.com>
2002-04-09 18:09 ` [Caml-list] Cannot find Stream Parser Documentation Wolfram Kahl
2002-04-10 11:03   ` [Caml-list] Streams Daniel de Rauglaudre
2002-04-11 14:35     ` Wolfram Kahl
2002-07-05 23:05 [Caml-list] Re: generic programming Dave Berry
2002-08-02 14:49 ` [Caml-list] Streams Diego Olivier Fernandez Pons
2002-08-02 15:29   ` Alain Frisch
2002-08-03 14:19     ` Diego Olivier Fernandez Pons
2006-08-10 10:51 Streams Error404
2006-08-10 11:40 ` [Caml-list] Streams Jonathan Roewen
2006-08-10 19:02   ` Chris King
2006-08-10 18:32 ` Martin Jambon
2006-08-11  0:00 ` Jon Harrop

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).