dom-parser-3.2.0: Simple monadic DOM parser
Safe HaskellSafe-Inferred
LanguageHaskell2010

Text.XML.DOM.Parser.Buildable

Synopsis

Documentation

class Traversable f => Buildable f where Source #

Class of traversable functors which may be constructed from list

Methods

build :: [a] -> Maybe (f a) Source #

If method return Nothing this means we can not build traversable from given list. In this case inFilteredTrav should fail traversing.

Instances

Instances details
Buildable Identity Source # 
Instance details

Defined in Text.XML.DOM.Parser.Buildable

Methods

build :: [a] -> Maybe (Identity a) Source #

Buildable NonEmpty Source # 
Instance details

Defined in Text.XML.DOM.Parser.Buildable

Methods

build :: [a] -> Maybe (NonEmpty a) Source #

Buildable Maybe Source # 
Instance details

Defined in Text.XML.DOM.Parser.Buildable

Methods

build :: [a] -> Maybe (Maybe a) Source #

Buildable List Source # 
Instance details

Defined in Text.XML.DOM.Parser.Buildable

Methods

build :: [a] -> Maybe [a] Source #