module LazyList:sig
..end
type 'a
node =
| |
Nil |
| |
Cons of |
type'a
t ='a node Lazy.t
val nil : 'a t
val cons : 'a -> 'a t -> 'a t
val to_list : 'a t -> 'a list
val to_seq : 'a t -> 'a Sequence.t
val fold : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'a