-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Generic cellular data representation library -- -- This library defines a trivial type used for streaming of tabular data -- using coinductive control structures such as pipes, conduit or -- iteratees. @package data-cell @version 1.0.0.0 module Data.Cell -- | Individual cell type data Cell a Cell :: a -> CellDelimiter -> Cell a -- | Cell delimiter data CellDelimiter -- | end of partial cell content EOP :: CellDelimiter -- | end of cell EOC :: CellDelimiter -- | end of row EOR :: CellDelimiter -- | end of table EOT :: CellDelimiter instance GHC.Show.Show a => GHC.Show.Show (Data.Cell.Cell a) instance GHC.Classes.Ord a => GHC.Classes.Ord (Data.Cell.Cell a) instance GHC.Classes.Eq a => GHC.Classes.Eq (Data.Cell.Cell a) instance GHC.Enum.Enum Data.Cell.CellDelimiter instance GHC.Show.Show Data.Cell.CellDelimiter instance GHC.Classes.Ord Data.Cell.CellDelimiter instance GHC.Classes.Eq Data.Cell.CellDelimiter