definition:
|
repSeq4 :: (Data a, Data b, Data c, Data d, Data e) => (a -> b -> c -> d -> e)
-> XmlConv Repeatable _ a -> XmlConv Repeatable _ b
-> XmlConv Repeatable _ c -> XmlConv Repeatable _ d
-> XRepConv [e]
repSeq4 cons xa xb xc xd = rep (seq4_ cons xa xb xc xd)
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- Creates an XML converter that represents a repetition of a sequence
--- of repeatable XML data. The repetition may be used in other
--- repetitions and does not represent an XML element. This combinator is
--- provided because converters for repeatable sequences cannot be
--- constructed by the seq combinators.
---
--- @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 repetition of a sequence
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_,_,_,_,_,_) |-> {Conv}}
|
name:
|
repSeq4
|
precedence:
|
no precedence defined
|
result-values:
|
{Conv}
|
signature:
|
(Prelude.Data a, Prelude.Data b, Prelude.Data c, Prelude.Data d, Prelude.Data e) => (a
-> b -> c -> d -> e) -> XmlConv Repeatable f a -> XmlConv Repeatable g b
-> XmlConv Repeatable h c -> XmlConv Repeatable i d
-> XmlConv NotRepeatable NoElem [e]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|