-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Distinguish between buffer pointer and iterator.
There's a notion of pointer to the first byte of the buffer. This is what one passes to HDF5, e.g. in `H5Dread`. There's also the concept of a iterator which is used for serialization. Currently, both ideas are represented by an `hdf5_type*`. However, the StringBuffer will need to return proxy objects. This commits splits the notion. Conveniently, we can rename `get_pointer` to the more in-style `getPointer` and hence the compiler checks that we've considered all occurrences of `get_pointer`.
- Loading branch information
Showing
3 changed files
with
24 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters