definition:
|
eRepSeq6 :: (Data a, Data b, Data c, Data d, Data e, Data f, Data g) =>
String -> (a -> b -> c -> d -> e -> f -> g)
-> XmlConv Repeatable _ a -> XmlConv Repeatable _ b
-> XmlConv Repeatable _ c -> XmlConv Repeatable _ d
-> XmlConv Repeatable _ e -> XmlConv Repeatable _ f
-> XElemConv [g]
eRepSeq6 name cons xa xb xc xd xe xf
= element name (repSeq6 cons xa xb xc xd xe xf)
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- Creates an XML converter for repetitions of sequences represented as an
--- XML element that can be used in repetitions.
---
--- @param name Tag name of the element
--- @param cons constructor of the sequence
--- @param conv(s) XML converter for the components
--- @return XML element converter for a repeated sequence
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_,_,_,_,_,_,_,_,_,_,_) |-> {Conv}}
|
name:
|
eRepSeq6
|
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 Repeatable h a
-> XmlConv Repeatable i b -> XmlConv Repeatable j c -> XmlConv Repeatable k d
-> XmlConv Repeatable l e -> XmlConv Repeatable m 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
|