spreadsheetml
A library to parsing SpreadsheetML (used in Microsoft Excel files)
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Library spreadsheetml
module Type : sig ... end
module Value : sig ... end
type t = {
reference : Base.string Base.option; |
formula : Base.string Base.option; |
value : Value.t Base.option; |
cell_metadata_index : Stdint.uint32; |
show_phonetic : Base.bool; |
style_index : Stdint.uint32; |
data_type : Type.t; |
value_metadata_index : Stdint.uint32; |
}
val value_metadata_index : t -> Stdint.uint32
val style_index : t -> Stdint.uint32
val cell_metadata_index : t -> Stdint.uint32
val value : t -> Value.t Base.option
val formula : t -> Base.string Base.option
val reference : t -> Base.string Base.option
module Fields : sig ... end
val sexp_of_t : t -> Sexplib.Sexp.t
val column : t -> int
val to_string :
shared_strings:Shared_string_table.String_item.t Base.Array.t ->
t ->
Base.string
val default : t
val of_xml : Xml.xml -> t Base.Option.t