JuliaIO / JLD.jl

Saving and loading julia variables while preserving native types
MIT License
278 stars 55 forks source link

Directly call low-level h5d_create when using HDF5.Properties #289

Closed jmert closed 3 years ago

jmert commented 3 years ago

In preparation for proposed JuliaIO/HDF5.jl#776, use the low-level h5d_create method directly. HDF5's mid-level API (dataset_create) is designed around setting properties as keyword-value pairs, but given the existing infrastructure which uses HDF5.Properties directly, drop down to using the low-level calls instead.

musm commented 3 years ago

Many thanks for doing this.