definition:
|
headedTable :: HTML h => [[[h]]] -> h
headedTable = hStruct "table" . headedItems
where
headedItems [] = []
headedItems (row:rows) = hStruct "tr" (map (hStruct "th") row) :
map (\r -> hStruct "tr" (map (hStruct "td") r)) rows
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Similar to `table` but introduces header tags for the first row.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {.._#lambda508}}
|
name:
|
headedTable
|
precedence:
|
no precedence defined
|
result-values:
|
{.._#lambda508}
|
signature:
|
HTML a => [[[a]]] -> a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|