definition:
|
rep :: XmlConv Repeatable _ a -> XRepConv [a]
rep xa = Conv rd sh
where
rd childs = ret [] childs
? ( xmlReads xa />= \x ->
rd />= \xs ->
ret (x:xs)) childs
sh = foldr (.) id . map (xmlShows xa)
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- Takes an XML converter representing repeatable data and returns an
--- XML converter that represents repetitions of this data. Repetitions
--- must not be used in other repetitions and do not represent XML elements.
---
--- @param conv XML converter representing repeatable data
--- @return XML converter representing repetitions
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {Conv}}
|
name:
|
rep
|
precedence:
|
no precedence defined
|
result-values:
|
{Conv}
|
signature:
|
XmlConv Repeatable a b -> XmlConv NotRepeatable NoElem [b]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|