package erm_xml
-
erm_xml
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type 'a t = 'a UnitMonad.t
val return : 'a -> 'a t
val fail : exn -> 'a t
type source = Input(UnitMonad).stream
type stream = LocatedStream(UnitMonad)(Input(UnitMonad)).stream = {
mutable line : int;
mutable col : int;
mutable decoder : source -> int option Input(UnitMonad).t;
stream : source;
}
val set_decoder : string -> stream -> unit