diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-09-14 20:44:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 20:44:24 (GMT) |
commit | 45178c87a3099a9fef8bae6f7249ca306cf89629 (patch) | |
tree | cb404581365434d641e4d6303921613ef3432bd0 /fortran/src/H5Dff.F90 | |
parent | dcf3b54b6ef3ffe2093cfae81fe80cdb2bb53047 (diff) | |
download | hdf5-45178c87a3099a9fef8bae6f7249ca306cf89629.zip hdf5-45178c87a3099a9fef8bae6f7249ca306cf89629.tar.gz hdf5-45178c87a3099a9fef8bae6f7249ca306cf89629.tar.bz2 |
develop Merge doxygen from 1.12 branch (#2095)
Diffstat (limited to 'fortran/src/H5Dff.F90')
-rw-r--r-- | fortran/src/H5Dff.F90 | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/fortran/src/H5Dff.F90 b/fortran/src/H5Dff.F90 index 7707083..35a959e 100644 --- a/fortran/src/H5Dff.F90 +++ b/fortran/src/H5Dff.F90 @@ -210,15 +210,15 @@ CONTAINS !! !! \brief Creates a dataset at the specified location. !! -!! \param loc_id File or group identifier. -!! \param name Dataset name. -!! \param type_id Dataset datatype identifier. -!! \param space_id Dataset dataspace identifier. -!! \param dset_id Dataset identifier. +!! \param loc_id File or group identifier +!! \param name Dataset name +!! \param type_id Dataset datatype identifier +!! \param space_id Dataset dataspace identifier +!! \param dset_id Dataset identifier !! \param hdferr \fortran_error -!! \param dcpl_id Dataset creation property list. -!! \param lcpl_id Link creation property list. -!! \param dapl_id Dataset access property list. +!! \param dcpl_id Dataset creation property list +!! \param lcpl_id Link creation property list +!! \param dapl_id Dataset access property list !! SUBROUTINE h5dcreate_f(loc_id, name, type_id, space_id, dset_id, & hdferr, dcpl_id, lcpl_id, dapl_id) @@ -279,11 +279,11 @@ CONTAINS !! !! \brief Opens an existing dataset. !! -!! \param loc_id File or group identifier. -!! \param name Dataset name. -!! \param dset_id Dataset identifier. +!! \param loc_id File or group identifier +!! \param name Dataset name +!! \param dset_id Dataset identifier !! \param hdferr \fortran_error -!! \param dapl_id Dataset access property list. +!! \param dapl_id Dataset access property list !! SUBROUTINE h5dopen_f(loc_id, name, dset_id, hdferr, dapl_id) IMPLICIT NONE @@ -323,7 +323,7 @@ CONTAINS !! !! \brief Closes a dataset. !! -!! \param dset_id Dataset identifier. +!! \param dset_id Dataset identifier !! \param hdferr \fortran_error !! SUBROUTINE h5dclose_f(dset_id, hdferr) @@ -349,8 +349,8 @@ CONTAINS !! \brief Returns an identifier for a copy of the datatype for a !! dataset. !! -!! \param dataset_id Dataset identifier. -!! \param datatype_id Dataspace identifier. +!! \param dataset_id Dataset identifier +!! \param datatype_id Dataspace identifier !! \param hdferr \fortran_error !! SUBROUTINE h5dget_type_f(dataset_id, datatype_id, hdferr) @@ -376,8 +376,8 @@ CONTAINS !! !! \brief Extends a dataset with unlimited dimension. !! -!! \param dataset_id Dataset identifier. -!! \param size Array containing the new magnitude of each dimension. +!! \param dataset_id Dataset identifier +!! \param size Array containing the new magnitude of each dimension !! \param hdferr \fortran_error !! SUBROUTINE h5dset_extent_f(dataset_id, size, hdferr) @@ -403,8 +403,8 @@ CONTAINS !! !! \brief Returns an identifier for a copy of the dataset creation property list for a dataset. !! -!! \param dataset_id Dataset identifier. -!! \param plist_id Creation property list identifier. +!! \param dataset_id Dataset identifier +!! \param plist_id Creation property list identifier !! \param hdferr \fortran_error !! SUBROUTINE h5dget_create_plist_f(dataset_id, plist_id, hdferr) @@ -429,8 +429,8 @@ CONTAINS !! !! \brief Returns the amount of storage requires by a dataset !! -!! \param dataset_id Dataset identifier. -!! \param size Datastorage size. +!! \param dataset_id Dataset identifier +!! \param size Datastorage size !! \param hdferr \fortran_error !! SUBROUTINE h5dget_storage_size_f(dataset_id, size, hdferr) @@ -455,10 +455,10 @@ CONTAINS !! !! \brief Returns maximum length of the VL array elements !! -!! \param dataset_id Dataset identifier. -!! \param type_id Datatype identifier. -!! \param space_id Dataspace identifier. -!! \param len Buffer size. +!! \param dataset_id Dataset identifier +!! \param type_id Datatype identifier +!! \param space_id Dataspace identifier +!! \param len Buffer size !! \param hdferr \fortran_error !! SUBROUTINE h5dvlen_get_max_len_f(dataset_id, type_id, space_id, len, hdferr) @@ -487,7 +487,7 @@ CONTAINS !! !! \brief Returns the status of data space allocation. !! -!! \param dset_id Dataset identifier. +!! \param dset_id Dataset identifier !! \param flag Status; may have one of the following values: !! \li H5D_SPACE_STS_ERROR_F !! \li H5D_SPACE_STS_NOT_ALLOCATED_F |