definition:
|
eSeq6 :: (Data a, Data b, Data c, Data d, Data e, Data f, Data g) =>
String -> (a -> b -> c -> d -> e -> f -> g)
-> XmlConv _ _ a -> XmlConv _ _ b -> XmlConv _ _ c -> XmlConv _ _ d
-> XmlConv _ _ e -> XmlConv _ _ f
-> XElemConv g
eSeq6 name cons xa xb xc xd xe xf = element name (seq6 cons xa xb xc xd xe xf)
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- Creates an XML converter for compound values represented as an
--- XML element with children that correspond to the values components.
--- The element can be used in repetitions.
---
--- @param name Tag name of the element
--- @param cons constructor of the compound value
--- @param conv(s) XML converter for the components
--- @return XML element converter for a compound value
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_,_,_,_,_,_,_,_,_,_,_) |-> {Conv}}
|
name:
|
eSeq6
|
precedence:
|
no precedence defined
|
result-values:
|
{Conv}
|
signature:
|
(Prelude.Data a, Prelude.Data b, Prelude.Data c, Prelude.Data d, Prelude.Data e, Prelude.Data f, Prelude.Data g) => String
-> (a -> b -> c -> d -> e -> f -> g) -> XmlConv h i a -> XmlConv j k b
-> XmlConv l m c -> XmlConv n o d -> XmlConv p q e -> XmlConv r s f
-> XmlConv Repeatable Elem g
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|