definition:
|
empty :: Data a => a -> XPrimConv a
empty val = Conv rd sh
where
rd = ret val
sh v childs | v=:=val = childs
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Takes a value and returns an XML converter for this value which is not
--- represented as XML data. Empty XML data must not be used in repetitions
--- and does not represent an XML element.
---
--- @param val Value without an XML representation
--- @return Empty XML converter
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {Conv}}
|
name:
|
empty
|
precedence:
|
no precedence defined
|
result-values:
|
{Conv}
|
signature:
|
Prelude.Data a => a -> XmlConv NotRepeatable NoElem a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|