definition:
|
eRepSeq2 :: (Data a, Data b, Data c) => String -> (a -> b -> c)
-> XmlConv Repeatable _ a -> XmlConv Repeatable _ b
-> XElemConv [c]
eRepSeq2 name cons xa xb = element name (repSeq2 cons xa xb)
|
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:
|
eRepSeq2
|
precedence:
|
no precedence defined
|
result-values:
|
{Conv}
|
signature:
|
(Prelude.Data a, Prelude.Data b, Prelude.Data c) => String -> (a -> b -> c)
-> XmlConv Repeatable d a -> XmlConv Repeatable e b
-> XmlConv Repeatable Elem [c]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|