Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Text.Layout.Table.Primitives.CellMod
Synopsis
- data CellMod a = CellMod {}
- padCellLeft :: Int -> a -> CellMod a
- padCellRight :: Int -> a -> CellMod a
- padCell :: Int -> Int -> a -> CellMod a
- trimCell :: Int -> Int -> Int -> Int -> a -> CellMod a
- trimCellLeft :: Int -> Int -> a -> CellMod a
- trimCellRight :: Int -> Int -> a -> CellMod a
- modifyCellWithCutMarkLen :: Int -> Int -> Int -> Int -> a -> CellMod a
- modifyCell :: Int -> Int -> a -> CellMod a
- keepCell :: a -> CellMod a
Documentation
Provide all the information necessary to compare resulting dimensions and
to turn it into a StringBuilder
.
Constructors
CellMod | |
Fields
|
Instances
Functor CellMod Source # | |
Show a => Show (CellMod a) Source # | |
Eq a => Eq (CellMod a) Source # | |
Ord a => Ord (CellMod a) Source # | |
Defined in Text.Layout.Table.Primitives.CellMod |
padCellLeft :: Int -> a -> CellMod a Source #
Describe a padding operation on the left side. The padding may not be negative.
padCellRight :: Int -> a -> CellMod a Source #
Describe a padding operation on the right side. The padding may not be negative.
padCell :: Int -> Int -> a -> CellMod a Source #
Describe a padding operation. The padding may not be negative.
trimCell :: Int -> Int -> Int -> Int -> a -> CellMod a Source #
Describe a trim operation. None of the arguments may be negative.
trimCellLeft :: Int -> Int -> a -> CellMod a Source #
Describe a trim operation on the left side. None of the arguments may be negative.
trimCellRight :: Int -> Int -> a -> CellMod a Source #
Describe a trim operation on the right side. None of the arguments may be negative.