CCLazy_listtype +'a t = 'a node lazy_tval empty : 'a tEmpty list.
val return : 'a -> 'a tReturn a computed value.
val is_empty : _ t -> boolEvaluate the head.
val length : _ t -> intlength l returns the number of elements in l, eagerly (linear time). Caution, will not terminate if l is infinite.
module Infix : sig ... endval of_list : 'a list -> 'a tval to_list : 'a t -> 'a listval to_list_rev : 'a t -> 'a list