-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Enumerator-based API for libXML's SAX interface -- -- Enumerator-based API for libXML's SAX interface @package libxml-enumerator @version 0.3 module Text.XML.LibXML.Enumerator data Event EventBeginDocument :: Event EventEndDocument :: Event EventBeginElement :: Name -> [Attribute] -> Event EventEndElement :: Name -> Event EventCharacters :: Text -> Event EventComment :: Text -> Event EventInstruction :: Instruction -> Event parseBytesIO :: (MonadIO m) => Maybe Text -> Enumeratee ByteString Event m b parseTextIO :: (MonadIO m) => Maybe Text -> Enumeratee Text Event m b parseBytesST :: Maybe Text -> Enumeratee ByteString Event (ST s) b parseTextST :: Maybe Text -> Enumeratee Text Event (ST s) b instance Show Event instance Eq Event