| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Codec.Xlsx.Parser
Description
This module provides a function for reading .xlsx files
- toXlsx :: ByteString -> Xlsx
- toXlsxEither :: ByteString -> Parser Xlsx
- data ParseError
- type Parser = Either ParseError
Documentation
toXlsxEither :: ByteString -> Parser Xlsx Source #
Reads Xlsx from raw data (lazy bytestring), failing with Left on parse error
data ParseError Source #
Constructors
| InvalidZipArchive | |
| MissingFile FilePath | |
| InvalidFile FilePath | |
| InvalidRef FilePath RefId | |
| InconsistentXlsx Text |
Instances
type Parser = Either ParseError Source #