-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | A megaparsec library for CSV files. -- -- A Simple megaparsec library for parsing CSV data with optional escape -- characters. @package megaparsec-csv @version 0.1 -- | This module contains the csv function. module Text.Megaparsec.CSV -- | The CSV parser. The first argument is the seperator and the second -- argument is the optional escape character. csv :: Char -> Maybe Char -> CSVParser [[String]] -- | The parsing type for CSV files type CSVParser = Parsec Void String