definition:
|
seq1 :: (Data a, Data b) => (a -> b) -> XmlConv rep _ a
-> XmlConv rep NoElem b
seq1 cons xa = Conv rd sh
where
rd = xmlReads xa />= ret . cons
sh arg | cons a =:<= arg = xmlShows xa a where a free
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- Creates an XML converter representing a sequence of arbitrary XML data.
--- The sequence must not be used in repetitions and does not represent an
--- XML element.
---
--- @param f Invertable function (constructor) that combines the sequence
--- @param conv(s) XML converter for the data contained in the sequence
--- @return XML converter representing a sequence
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> {Conv}}
|
name:
|
seq1
|
precedence:
|
no precedence defined
|
result-values:
|
{Conv}
|
signature:
|
(Prelude.Data a, Prelude.Data b) => (a -> b) -> XmlConv c d a
-> XmlConv c NoElem b
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|