definition:
|
toHtmlExp :: BaseHtml -> HtmlExp
toHtmlExp (BaseText s) = HtmlText s
toHtmlExp (BaseStruct t ps hs) = HtmlStruct t ps (map toHtmlExp hs)
toHtmlExp (BaseAction a) = HtmlAction a
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms a static into a dynamic HTML document.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({BaseText}) |-> {HtmlText} || ({BaseStruct}) |-> {HtmlStruct} || ({BaseAction}) |-> {HtmlAction}}
|
name:
|
toHtmlExp
|
precedence:
|
no precedence defined
|
result-values:
|
{HtmlAction,HtmlStruct,HtmlText}
|
signature:
|
BaseHtml -> HtmlExp
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|