xml-query-0.9.1: A parser-agnostic declarative API for querying XML-documents

Safe HaskellNone
LanguageHaskell2010

XMLQuery.AST

Description

An API for the implementation of interpreters. Should only be used by the libraries, which implement the interpreters.

Documentation

data Text a Source

Constructors

Text (Text -> Either Text a) 

Instances

data Attr a Source

Constructors

AttrNameText (Alt Text a) 
AttrValueText (Alt Text a) 

Instances

data Nodes a Source

Constructors

NodesNode (Alt Node a) 

Instances

data Node a Source

Constructors

NodeElement (Alt Element a) 
NodeText (Alt Text a) 

Instances