package GuaCaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type stream = Stdlib.in_channel
type !'a t = stream -> 'a
val bool : bool t
val char : char t
val int : int t
val string : string t
val sized_bytes : int -> bytes t
val bytes : bytes t
val option : 'a t -> 'a option t
val unit : unit t
val pair : 'a t -> 'b t -> ('a * 'b) t
val (*) : 'a t -> 'b t -> ('a * 'b) t
val trio : 'a t -> 'b t -> 'c t -> ('a * 'b * 'c) t
val list : 'a t -> 'a list t
val sized_array : 'a t -> int -> 'a array t
val array : 'a t -> 'a array t