CurryInfo: html2-3.5.0 / HTML.Base.textArea

definition:
textArea :: HtmlRef -> (Int,Int) -> String -> HtmlExp
textArea cref (height,width) contents
  | cref =:= HtmlRef ref -- instantiate cref argument
  = HtmlInput cref
       (HtmlStruct "textarea" [("name",ref),
                                ("rows",show height),("cols",show width)]
                               [htxt contents])
 where
   ref free
demand:
arguments 1 2
deterministic:
possibly non-deterministic operation
documentation:
--- Input text area with a reference, height/width, and initial contents
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{(,)},_) |-> {HtmlInput}}
name:
textArea
precedence:
no precedence defined
result-values:
{HtmlInput}
signature:
HtmlRef -> (Prelude.Int, Prelude.Int) -> String -> HtmlExp
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term