package tyxml

  1. Overview
  2. Docs

Streaming IO to/from XML trees

type name = string * string

Input

type signal = [
  1. | `Comment of string
  2. | `End_element
  3. | `Start_element of name * (name * string) list
  4. | `Text of string list
]
exception Malformed_stream
module Import (Xml : Xml_sigs.T) : sig ... end