Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
data TableCells' a b Source #
Cell b | |
Condition Cols (NonEmpty (a, TableCells' a b)) |
Bifunctor TableCells' Source # | |
Bitraversable TableCells' Source # | |
Bifoldable TableCells' Source # | |
Functor (TableCells' a) Source # | |
Foldable (TableCells' a) Source # | |
Traversable (TableCells' a) Source # | |
(Eq a, Eq b) => Eq (TableCells' a b) Source # | |
(Show a, Show b) => Show (TableCells' a b) Source # | |
data FunctionTable' a b Source #
Table b (TableCells' a b) |
Bifunctor FunctionTable' Source # | |
Bitraversable FunctionTable' Source # | |
Bifoldable FunctionTable' Source # | |
Functor (FunctionTable' a) Source # | |
Foldable (FunctionTable' a) Source # | |
Traversable (FunctionTable' a) Source # | |
(Eq a, Eq b) => Eq (FunctionTable' a b) Source # | |
(Show a, Show b) => Show (FunctionTable' a b) Source # | |
(Render a, Render b) => Render (FunctionTable' a b) Source # | |
type TableCells a = TableCells' a a Source #
type FunctionTable a = FunctionTable' a a Source #
Filler | |
|
Heading | |
|
_Condition :: forall a b a. Prism (TableCells' a b) (TableCells' a b) (Cols, NonEmpty (a, TableCells' a b)) (Cols, NonEmpty (a, TableCells' a b)) Source #
_Cell :: forall a b. Prism' (TableCells' a b) b Source #
class HasHeight s a | s -> a where