package easy_xlsx

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

An easy read for XLSX files.

type t =
  1. | Date of Ptime.date
  2. | Datetime of Ptime.t
  3. | Number of float
  4. | String of string
  5. | Time of Ptime.time

A cell value. Note that a Number could be either an integer or a float; Excel stores them exactly the same and the only difference is formatting.

include sig ... end
val sexp_of_t : t -> Sexplib.Sexp.t
val to_string : t -> string
val is_empty : t -> bool