package GuaCaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type !'t t =
  1. | Cons of 't * 't t Stdlib.Lazy.t
  2. | Nil
val of_stream : 't Stream.t -> 't t
val of_function : (unit -> 't option) -> 't t
val of_string : string -> char t
val of_list : 'a list -> 'a t
val of_channel : ?tee:(char -> unit) -> Stdlib.in_channel -> char t
val eval1 : 'a t -> ('a * 'a t) option
val first : 'a t -> 'a option
val to_list : 'a t -> 'a list