definition:
|
ulistWithItemClass :: HTML h => String -> [(String,[h])] -> h
ulistWithItemClass listclass classeditems =
hStruct "ul" (map litemWC classeditems) `addClass` listclass
where
litemWC (c,i) = litem i `addClass` c
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- An unordered list with classes for the entire list
--- individual classes for the list elements.
--- The class annotation will be ignored if it is empty.
--- @param listclass - the class for the entire list structure
--- @param classitems - the list items together with their classes
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
ulistWithItemClass
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
HTML a => String -> [(String, [a])] -> a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|