xlsx-0.7.2: Simple and incomplete Excel file parser/writer

Safe HaskellNone
LanguageHaskell2010

Codec.Xlsx.Parser

Description

This module provides a function for reading .xlsx files

Synopsis

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

toXlsxFast :: ByteString -> Xlsx #

Reads Xlsx from raw data (lazy bytestring) using xeno library using some "cheating":

toXlsxEitherFast :: ByteString -> Parser Xlsx #

Fast parsing with Left on parse error, see toXlsxFast

data ParseError #

Instances

Eq ParseError # 
Show ParseError # 
Generic ParseError # 

Associated Types

type Rep ParseError :: * -> * #

Exception ParseError # 
type Rep ParseError #