-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Parse XML from bytes -- -- Parse XML from bytes. @package xml-syntax @version 0.1.0.2 module Xml data Node Text :: !ShortText -> Node Element :: {-# UNPACK #-} !Content -> Node data Content Content :: !ShortText -> !SmallArray Attribute -> !SmallArray Node -> Content [tag] :: Content -> !ShortText [attributes] :: Content -> !SmallArray Attribute [children] :: Content -> !SmallArray Node data Attribute Attribute :: !ShortText -> !ShortText -> Attribute [name] :: Attribute -> !ShortText [value] :: Attribute -> !ShortText decode :: Bytes -> Maybe Node instance GHC.Classes.Eq Xml.Attribute instance GHC.Show.Show Xml.Attribute instance GHC.Classes.Eq Xml.Node instance GHC.Show.Show Xml.Node instance GHC.Classes.Eq Xml.Content instance GHC.Show.Show Xml.Content