package erm_xml
-
erm_xml
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type data = XmlStanza(IterMonad).data =
| StartTag of string * (string * string) list * bool
| EndTag of string
| Doctype of Xmllexer_generic.doctype
| PI of string * string
| Text of string
type token = data option
type 'a t = 'a IterMonad.t
val emit_start_tag :
string ->
(string * string) list ->
bool ->
data option IterMonad.t
val emit_end_tag : string -> data option IterMonad.t
val emit_doctype : Xmllexer_generic.doctype -> data option IterMonad.t
val emit_pi : string -> string -> data option IterMonad.t
val emit_text : string -> data option IterMonad.t
val emit_eof : unit -> 'a option IterMonad.t