| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Text.XML.Hexml.Lens
Contents
Nodes
Methods
_XML :: Prism' s Node Source #
A prism for parsing and unparsing XML.
unparsing is provided by outer.
>>>"<?xml version=\"1.0\"?><foo/>" ^? _XMLJust Node "<?xml version=\"1.0\"?><foo/>"
Nameless nodes are inserted for trees with >1 root.
>>>"<?xml version=\"1.0\"?><foo/>" ^? _XML.to nameJust ""
>>>"<?xml version=\"1.0\"?><foo/>" ^? _XML._children.ix(0)Just Node "<?xml version=\"1.0\"?>"
>>>"<?xml version=\"1.0\"?><foo/>" ^? _XML._children.ix(1)Just Node "<foo/>"
If the tree has only 1 root, no nameless nodes are inserted.
>>>"<foo/>" ^? _XML.re(_XML @String)._XML.to nameJust "foo"
The law x ^? re _XML . _XML == x doesn't hold for the nameless nodes
injected by parse.
>>>parse "<foo/>" ^? _Right.to nameJust "">>>parse "<foo/>" ^? _Right.re(_XML @String)._XML.to nameJust "foo"
_contents :: Fold Node (Either s Node) Source #
Fold over all the children (text and element)
_inner :: Getter Node s Source #
Getter for the inner contents of a node
_outer :: Getter Node s Source #
Getter for the inner contents of a node
textContents :: Fold Node s Source #
Fold for accessing the text contents of a node
_Attribute :: s -> Getter Node (Maybe s) Source #
Fold for accessing attributes by name.
iattributes :: IndexedFold String Node s Source #
Name-Indexed fold over the attribute values
nodes :: s -> Getter Node [Node] Source #
A getter for accessing named children nodes This is a more efficient version of
nodes foo = _children . to (filter (\n -> name n == foo))
Instances
multiple :: Getting [a] s a -> IndexPreservingGetter s [a] Source #