h5rio 0.1.0

A simple HDF5 IO library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

mod reader;
pub use reader::read_table;
pub use reader::read_array;

mod array_writer;
mod table_writer;
pub use array_writer::ArrayHdf5Writer;
pub use table_writer::TableHdf5Writer;


pub use h5rio_macros::h5type;

#[cfg(test)]
pub(crate) mod utils;