definition:
|
aBool :: String -> String -> String -> XAttrConv Bool
aBool name true false = attr name (bool_ true false)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Creates an XML converter for boolean attributes. Boolean attributes
--- must not be used in repetitions and do not represent XML elements.
---
--- @param name Attribute name
--- @param true String representing True
--- @param false String representing False
--- @return Bool attribute converter
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {Conv}}
|
name:
|
aBool
|
precedence:
|
no precedence defined
|
result-values:
|
{Conv}
|
signature:
|
String -> String -> String -> XmlConv NotRepeatable NoElem Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|