definition:
|
xmlShow :: XmlConv _ Elem a -> a -> XmlExp
xmlShow xa a = x
where
([],[x]) = xmlShows xa a ([],[])
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Takes an XML converter and a value and returns a corresponding
--- XML expression.
---
--- @param conv XML converter
--- @return XML show function
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
xmlShow
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
XmlConv a Elem b -> b -> XML.XmlExp
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|