(ddd-themes.info)Table Functions
B.13 Table Functions
====================
The functions in this section require inclusion of the library
`tab.vsl'.
For themes, `tab.vsl' need not be included explicitly.
-- VSL Function: tab (table)
Return TABLE (a list of lists) aligned in a table: `tab([[1, 2,
3], [4, 5, 6], [7, 8]]) =>'
1 2 3
4 5 6
7 8
-- VSL Function: dtab (table)
Like `tab', but place delimiters (horizontal and vertical rules)
around table elements.
-- VSL Function: tab_elem (X)
Returns padded table element X. Its default definition is:
tab_elem([]) = tab_elem(0); // empty table
tab_elem(x) = whiteframe(x); // padding
automatically generated by info2www version 1.2.2.9