-
Notifications
You must be signed in to change notification settings - Fork 95
New iteration API #150
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
Comments
I would be super happy if |
Heads up that that chunk_iter is probably going to change output: HDFGroup/hdf5#1419 (comment), offset is going to be scaled. |
Note that the change makes That is if the
I am going to try to port See https://forum.hdfgroup.org/t/backporting-h5dchunk-iter-to-1-12-and-1-10/9971 for the discussion. |
Awesome, that would make it available across more hdf5-versions of this package as well. |
In order to get all items of an object, we need to call
H5Literate
. The current API only exposes this asmember_names
(attr_names
in #64), where we collect all items into aVec<String>
. It would be beneficial to have more fine-grained control over this behaviour.We have three options here:
Vec<Enum>
Both the latter two requires collecting into a temporary vector, but we could expose some way to filter (e.g. only groups, only attributes) to minimise this cost.
The text was updated successfully, but these errors were encountered: