CurryInfo: html2-3.5.0 / HTML.Base.dlist

definition:
dlist :: HTML h => [([h],[h])] -> h
dlist items = hStruct "dl" (concatMap ditem items)
 where
  ditem (hexps1,hexps2) = [htmlStruct "dt" [] hexps1,
                           htmlStruct "dd" [] hexps2]
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Description list
--- @param items - a list of (title/description) pairs (of HTML expressions)
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
dlist
precedence:
no precedence defined
result-values:
_
signature:
HTML a => [([a], [a])] -> a
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms