CurryInfo: html2-3.5.0 / HTML.Base.checkedBox

definition:
checkedBox :: HtmlRef -> String -> HtmlExp
checkedBox cref value
  | cref =:= HtmlRef ref -- instantiate cref argument
  = HtmlInput cref
       (HtmlStruct "input" [("type","checkbox"),("name",ref),
                            ("value",htmlQuote value),("checked","checked")] [])
 where
   ref free
demand:
argument 1
deterministic:
possibly non-deterministic operation
documentation:
--- A checkbox that is initially checked with a reference and a value.
--- The value is returned if checkbox is on, otherwise "" is returned.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> {HtmlInput}}
name:
checkedBox
precedence:
no precedence defined
result-values:
{HtmlInput}
signature:
HtmlRef -> String -> HtmlExp
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term