type.ml
hdf5.caml
hdf5.raw
ppx_h5struct
1 2 3 4 5 6 7 8 9 type t = | Int | Int64 | Float64 | String of int let size = function | Int | Int64 | Float64 -> 8 | String l -> l
1 2 3 4 5 6 7 8 9
type t = | Int | Int64 | Float64 | String of int let size = function | Int | Int64 | Float64 -> 8 | String l -> l