xlsx-tabular-0.1.0.1: Xlsx table decode utility

Safe HaskellNone
LanguageHaskell2010

Codec.Xlsx.Util.Tabular

Contents

Description

Convinience utility to read Xlsx tabular cells.

Synopsis

Types

data Tabular Source #

Tabular cells

Lenses

Tabular

TabularHead

TabularRow

Methods

def :: Default a => a #

The default value for this type.

Functions

toTableRowsFromFile Source #

Arguments

:: Int

Starting row index (header row)

-> String

File name

-> IO (Maybe Tabular) 

Read from Xlsx file as tabular rows

toTableRows Source #

Arguments

:: Xlsx

Xlsx Workbook

-> Text

Worksheet name to decode

-> Int

Starting row index (header row)

-> Maybe Tabular 

Decode cells as tabular rows.

toTableRows' Source #

Arguments

:: Xlsx

Xlsx Workbook

-> Int

Starting row index (header row)

-> Maybe Tabular 

Decode cells as tabular rows from first sheet.