table-layout-1.0.0.0: Format tabular data as grid or table.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Text.Layout.Table.Spec.TableSpec

Synopsis

Documentation

data TableSpec rowSep colSep r c a Source #

Type used to specify tables.

Constructors

TableSpec 

Fields

simpleTableS :: (Default rowSep, Default colSep) => TableStyle rowSep colSep -> [RowGroup a] -> TableSpec rowSep colSep String String a Source #

Specify a table with the style and the row groups.

headerlessTableS :: (Default rowSep, Default colSep) => [ColSpec] -> TableStyle rowSep colSep -> [RowGroup a] -> TableSpec rowSep colSep String String a Source #

Specify a table with the columns, the style, and the row groups.

columnHeaderTableS :: Default rowSep => [ColSpec] -> TableStyle rowSep colSep -> HeaderSpec colSep c -> [RowGroup a] -> TableSpec rowSep colSep String c a Source #

Specify a table without a row header.

fullTableS :: [ColSpec] -> TableStyle rowSep colSep -> HeaderSpec rowSep r -> HeaderSpec colSep c -> [RowGroup a] -> TableSpec rowSep colSep r c a Source #

Specify a table with everything.