Module

Text.Parsing.CSV

Package
purescript-csv
Repository
nwolverson/purescript-csv

#P Source

type P a = Parser String a

#Parsers Source

type Parsers a = { chars :: P String, field :: P String, file :: P (List (List String)), fileHeaded :: P (List (Map String String)), qchars :: P String, quoted :: P a -> P a, row :: P (List String) }

#makeQuoted Source

makeQuoted :: forall a. String -> (P a -> P a)

#makeQchars Source

#makeField Source

#makeFile Source

#makeFileHeaded Source