table-layout-0.8.0.5: Layout text as grid or table.

Safe HaskellSafe
LanguageHaskell2010

Text.Layout.Table.Primitives.LenSpec

Synopsis

Documentation

data LenSpec Source #

Determines how long a column will be.

Instances
Default LenSpec Source # 
Instance details

Defined in Text.Layout.Table.Primitives.LenSpec.Internal

Methods

def :: LenSpec #

expand :: LenSpec Source #

Allows columns to use as much space as needed.

fixed :: Int -> LenSpec Source #

Fixes column length to a specific width.

expandUntil :: Int -> LenSpec Source #

The column will expand as long as it is smaller as the given width.

fixedUntil :: Int -> LenSpec Source #

The column will be at least as wide as the given width.