definition:
|
benchResultsAsTable :: [String] -> [[String]] -> String
benchResultsAsTable colnames xs =
"\\begin{tabular}{|" ++ concat (take (length colnames) (repeat "r|")) ++ "}\n" ++
"\\hline\n" ++
toTableRow colnames ++
"\\hline\n" ++
concatMap toTableRow xs ++
"\\hline\n\\end{tabular}\n"
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Format benchmark results as a LaTeX table.
--- The results are given as a table, i.e., as a list of rows.
--- The first argument is the list of column labels for the
--- benchmark data (second argument).
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
benchResultsAsTable
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[String] -> [[String]] -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|