xlsx-0.8.4: 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 Source #

Reads Xlsx from raw data (lazy bytestring)

toXlsxEither :: ByteString -> Parser Xlsx Source #

Reads Xlsx from raw data (lazy bytestring), failing with Left on parse error

toXlsxFast :: ByteString -> Xlsx Source #

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

toXlsxEitherFast :: ByteString -> Parser Xlsx Source #

Fast parsing with Left on parse error, see toXlsxFast

data ParseError Source #

Instances

Instances details
Eq ParseError Source # 
Instance details

Defined in Codec.Xlsx.Parser

Show ParseError Source # 
Instance details

Defined in Codec.Xlsx.Parser

Generic ParseError Source # 
Instance details

Defined in Codec.Xlsx.Parser

Associated Types

type Rep ParseError :: Type -> Type #

Exception ParseError Source # 
Instance details

Defined in Codec.Xlsx.Parser

type Rep ParseError Source # 
Instance details

Defined in Codec.Xlsx.Parser