definition:
|
eEmpty :: Data a => String -> a -> XElemConv a
eEmpty name a = element name (empty a)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Takes a name and a value and creates an empty XML element that represents
--- the given value. The created element may be used in repetitions.
---
--- @param name Tag name of the empty element
--- @param val Value represented by the empty element
--- @return XML converter representing an empty XML element
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {Conv}}
|
name:
|
eEmpty
|
precedence:
|
no precedence defined
|
result-values:
|
{Conv}
|
signature:
|
Prelude.Data a => String -> a -> XmlConv Repeatable Elem a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|