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