hexpat-lens-0.0.7: Lenses for Hexpat.

Portabilitynon-portable
Stabilityexperimental
Maintainerme@jspha.com
Safe HaskellNone

Text.XML.Expat.Lens.Generic

Contents

Description

A Hexpat lens module for generic tags.

Lenses provide power to do very concise XML tree diving. This module provides a less general interface to the Hexpat datatypes via lenses.

Synopsis

Basic inspection

name :: Traversal' (NodeG f tag text) tagSource

Traverses the name of an Element. This is as an Affine, or 0-or-1 target, Traversal. In regex terms, you can think of it like the ? suffix modifier.

attributes :: Traversal' (NodeG f tag text) (Attributes tag text)Source

Traverses to the list of attributes of an Element. This is as an Affine, or 0-or-1 target, Traversal. In regex terms, you can think of it like the ? suffix modifier.

text :: Prism' (NodeG f tag text) textSource

Prismatic access to the text of a Text node. This is more powerful than name, children, and attributes since it can be Reviewed.

Recursive inspection

children :: Traversal' (NodeG f tag text) (f (NodeG f tag text))Source

Traverses the children of an Element. This is as an Affine, or 0-or-1 target, Traversal. In regex terms, you can think of it like the ? suffix modifier.

allNodes :: Traversable c => NodeG c tag text -> [NodeG c tag text]Source

Produces a list of all UNodes in a XML tree. Synonym for universe.

(./) :: Plated i => Traversal' s i -> Traversal' i a -> Traversal' s aSource

Glue two Traversals together as relations. This is much like XPath's *slash*.

Filters

named :: (Choice p, Applicative f, Eq tag) => tag -> Overloaded' p f (NodeG c tag text) (NodeG c tag text)Source

Traverses Elements which have a particular name.

parameterized :: (Choice p, Applicative f, Eq tag, Eq text) => tag -> text -> Overloaded' p f (NodeG c tag text) (NodeG c tag text)Source

parameterized k v traverses Elements which match the value v at the key k in their attributes.