| Safe Haskell | Safe |
|---|---|
| Language | Haskell2010 |
Text.Layout.Table.Internal
- data ColSpec = ColSpec {}
- data LenSpec
- = Expand
- | Fixed Int
- | ExpandUntil Int
- | FixedUntil Int
- data AlignSpec
- data OccSpec = OccSpec (Char -> Bool) Int
- data RowGroup = RowGroup {}
- data HeaderColSpec = HeaderColSpec (Position H) (Maybe CutMarkSpec)
Documentation
Specifies the layout of a column.
Constructors
| ColSpec | |
Fields
| |
Determines how long a column will be.
Constructors
| Expand | |
| Fixed Int | |
| ExpandUntil Int | |
| FixedUntil Int |
Determines whether a column will align at a specific letter.
Groups rows together, which are not seperated from each other.
data HeaderColSpec Source
Specifies how a header is layout, by omitting the cut mark it will use the
one specified in the ColSpec like the other cells in that column.
Constructors
| HeaderColSpec (Position H) (Maybe CutMarkSpec) |