Warning: Reason support is experimental. We are looking for beta-tester and contributors.

Module type Xml_wrap.T

module type T = sig..end

type 'a t
type 'a tlist
val return : 'a -> 'a t
val fmap : ('a -> 'b) -> 'a t -> 'b t
val nil : unit -> 'a tlist
val singleton : 'a t -> 'a tlist
val cons : 'a t -> 'a tlist -> 'a tlist
val append : 'a tlist -> 'a tlist -> 'a tlist
val map : ('a -> 'b) -> 'a tlist -> 'b tlist