Tagged Questions

1
vote
3answers
941 views

Ocaml Syntax Error

I'm using an implementation of lazy lists where the type can be either Nil or Cons (value, thunk), where thunk is a function from unit to the rest of the list. I'm trying to write a function cross, ...
1
vote
2answers
387 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 = ...