Skip to content
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

Updated hyperslab documentation #4965

Merged
merged 2 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions fortran/src/H5Sff.F90
Original file line number Diff line number Diff line change
Expand Up @@ -893,6 +893,10 @@ END SUBROUTINE h5sset_extent_none_f
!! \param operator Flag, valid values are:
!! \li H5S_SELECT_SET_F
!! \li H5S_SELECT_OR_F
!! \li H5S_SELECT_AND_F
!! \li H5S_SELECT_XOR_F
!! \li H5S_SELECT_NOTB_F
!! \li H5S_SELECT_NOTA_F
!! \param start Array with hyperslab offsets, \Bold{0-based indices}.
!! \param count Number of blocks included in the hyperslab.
!! \param hdferr \fortran_error
Expand Down Expand Up @@ -1000,8 +1004,6 @@ END SUBROUTINE h5sselect_hyperslab_f
! H5S_SELECT_XOR_F
! H5S_SELECT_NOTB_F
! H5S_SELECT_NOTA_F
! H5S_SELECT_APPEND_F
! H5S_SELECT_PREPEND_F
! start - array with hyperslab offsets
! count - number of blocks included in the
! hyperslab
Expand Down
6 changes: 6 additions & 0 deletions src/H5Spublic.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ H5_DLL herr_t H5Sclose(hid_t space_id);
* composing the entire current extent). If either \p stride or
* \p block is NULL, then it will be set to \p 1.
*
* See H5Sselect_hyperslab() for valid operators (\p op).
*
* \since 1.10.6
*
*/
Expand All @@ -213,6 +215,8 @@ H5_DLL hid_t H5Scombine_hyperslab(hid_t space_id, H5S_seloper_t op, const hsize_
* from \p space1_id is copied for the dataspace extent of the
* newly created dataspace.
*
* See H5Sselect_hyperslab() for valid operators (\p op).
*
* \since 1.10.6
*
*/
Expand Down Expand Up @@ -816,6 +820,8 @@ H5_DLL htri_t H5Sis_simple(hid_t space_id);
* \p space2_id. The first selection is modified to contain the
* result of \p space1_id operated on by \p space2_id.
*
* See H5Sselect_hyperslab() for valid operators (\p op).
*
* \since 1.10.6
*
*/
Expand Down
Loading