definition:
|
opt :: XmlConv _ _ a -> XOptConv (Maybe a)
opt xa = Conv rd sh
where
rd childs = ret Nothing childs
? (xmlReads xa />= ret . Just) childs
sh Nothing = id
sh (Just a) = xmlShows xa a
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- Creates a converter for arbitrary optional XML data. Optional XML data
--- must not be used in repetitions and does not represent an XML element.
---
--- @param conv XML converter
--- @return XML converter for optional data represented by the given converter
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {Conv}}
|
name:
|
opt
|
precedence:
|
no precedence defined
|
result-values:
|
{Conv}
|
signature:
|
XmlConv a b c -> XmlConv NotRepeatable NoElem (Prelude.Maybe c)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|