definition:
|
seq5 :: (Data a, Data b, Data c, Data d, Data e, Data f) =>
(a -> b -> c -> d -> e -> f)
-> XmlConv _ _ a -> XmlConv _ _ b -> XmlConv _ _ c -> XmlConv _ _ d
-> XmlConv _ _ e
-> XSeqConv f
seq5 = seq5_
|
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:
|
{(_,_,_,_,_,_) |-> {seq5_}}
|
name:
|
seq5
|
precedence:
|
no precedence defined
|
result-values:
|
{seq5_}
|
signature:
|
(Prelude.Data a, Prelude.Data b, Prelude.Data c, Prelude.Data d, Prelude.Data e, Prelude.Data f) => (a
-> b -> c -> d -> e -> f) -> XmlConv g h a -> XmlConv i j b -> XmlConv k l c
-> XmlConv m n d -> XmlConv o p e -> XmlConv NotRepeatable NoElem f
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|