megaparsec-csv-0.1: A megaparsec library for CSV files.
Copyright[2025] Noah Martin Williams
LicenseBSD3
MaintainerNoah Martin Williams <noahmartinwilliams@gmail.com>
Stabilityexperimental
Portabilityportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

Text.Megaparsec.CSV

Description

This module contains the csv function.

Synopsis

Documentation

csv :: Char -> Maybe Char -> CSVParser [[String]] Source #

The CSV parser. The first argument is the seperator and the second argument is the optional escape character.

type CSVParser = Parsec Void String Source #

The parsing type for CSV files