definition:
|
olistWithClass :: HTML h => String -> String -> [[h]] -> h
olistWithClass listclass itemclass items =
hStruct "ol" (map litemWC items) `addClass` listclass
where
litemWC i = litem i `addClass` itemclass
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- An ordered list with classes for the entire list and the list elements.
--- The class annotation will be ignored if it is empty.
--- @param listclass - the class for the entire list structure
--- @param itemclass - the class for the list items
--- @param items - the list items where each item is a list of HTML expressions
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
olistWithClass
|
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
|