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
toXlsx :: ByteString -> Xlsx #
Reads Xlsx
from raw data (lazy bytestring)
toXlsxEither :: ByteString -> Parser Xlsx #
Reads Xlsx
from raw data (lazy bytestring), failing with Left on parse error
data ParseError #
Constructors
InvalidZipArchive | |
MissingFile FilePath | |
InvalidFile FilePath | |
InvalidRef FilePath RefId | |
InconsistentXlsx Text |
Instances
Eq ParseError # | |
Show ParseError # | |
Generic ParseError # | |
type Rep ParseError # | |
type Parser = Either ParseError #