-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add documentation #141
Comments
@mulimoen I was looking re: how we could improve our documentation, and one important thing that stands out is features/version/platform dependence. It would be nice if we could label things like Here's some reading and examples on the topic:
Not sure we care much about platform dependence (there's just a little bit of divergence but not much really), however feature-gated APIs like |
After a bit of pondering, I think that docs should be like serde / h5py - as in, leave docs.rs documentation as verbose as possible but leave it as API docs, and maintain a separate book (like https://github.com/serde-rs/serde-rs.github.io) in the style of h5py.org, with similar chapters. We can even snatch |
Makes sense to have a book to show the high level usage of the library, and tie together the examples and the rest of the ecosystem such as |
It would be great to include examples into our docs as per https://twitter.com/wcrichton/status/1456112165744615426 |
FWIW, I find myself wanting to use this crate but the lack of documentation keeps driving me back to python's h5py library. The idea to create a book along the lines of h5py is a great one and would make it much easier to get up to speed quickly. |
A lot of the items and functions in this crate are undocumented, and it is hard to understand how to use this crate (and hdf5) in the correct way for maximum performance.
We should minimally add documentation for most types and functions, to make the documentation on
docs.rs
as clear as possible. Doctests can be added to individual functions to illustrate basic principals.Having a guide on how to use the crate to fit in with the
hdf5
ecosystem would be nice. We could link the current examples, and add additional one for how to use chunking, performance pitfalls (compression on varlen arrays, SOA vs AOS), and related functionality/tips & tricks inh5py
and other relevant locations.The text was updated successfully, but these errors were encountered: