Tagged Questions
1
vote
2answers
391 views
What OCaml libraries are there for lazy list handling?
What OCaml libraries are out there that provide lazy list handling? I am looking for something along these lines:
type 'a lazy_list = (*'*)
| Nil
| Cons of 'a * 'a lazy_list lazy_t
let from f =
...