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

Module Xml_stream

module Xml_stream : sig..end

Streaming IO to/from XML trees


type name = string * string

Input

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