Versions in this module Expand all Collapse all v1 v1.0.1 Jun 5, 2018 v1.0.0 Jun 5, 2018 Changes in this version + type Cell struct + func (c *Cell) Bool() (bool, error) + func (c *Cell) Float() (float64, error) + func (c *Cell) Int() (int, error) + func (c *Cell) Int64() (int64, error) + func (c *Cell) Is(t CellDataType) bool + func (c *Cell) String() string + func (c *Cell) Type() CellDataType + type CellDataType uint8 + const Bool + const Numeric + const String + func (t CellDataType) Name() string + type Row struct + Cells []*Cell + type Sheet struct + Name string + Rows []*Row + func (s *Sheet) Cell(i int, j int) *Cell + type Spreadsheet struct + Sheets []*Sheet + SheetsByName map[string]*Sheet + func Open(filePath string) (*Spreadsheet, error)