definition:
|
tableWithClass :: HTML h => String -> String -> String -> [[[h]]] -> h
tableWithClass tableclass rowclass dataclass items =
hStruct "table"
(map (\row -> hStruct "tr"
(map (\d -> hStruct "td" d `addClass` dataclass) row)
`addClass` rowclass)
items) `addClass` tableclass
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Table with a matrix of items (each item is a list of HTML expressions)
--- with classes for the entire table, each row, and each data element.
--- The class annotation will be ignored if it is empty.
--- @param tableclass - the class for the entire table structure
--- @param rowclass - the class for the table rows
--- @param dataclass - the class for the table data items
--- @param items - the matrix of table items where each item is a
--- list of HTML expressions
|
failfree:
|
(_, _, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_) |-> _}
|
name:
|
tableWithClass
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
HTML a => String -> String -> String -> [[[a]]] -> a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|