definition:
|
fromStaticHtml :: HTML h => StaticHtml -> h
fromStaticHtml (HText s) = htmlText s
fromStaticHtml (HStruct t attrs hs) = htmlStruct t attrs (map fromStaticHtml hs)
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms a `StaticHtml` expression into a generic HTML expression.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{HText}) |-> _ || (_,{HStruct}) |-> _}
|
name:
|
fromStaticHtml
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
HTML a => StaticHtml -> a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|