[
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: | 2006-08-10 (10:51) |
From: | Error404 <error92@t...> |
Subject: | Streams |
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.