Determines whether a dataspace is a simple dataspace
Procedure:
H5S_IS_SIMPLE ( space_id )
Signature:
htri_t H5Sis_simple(
hid_t space_id
)
Fortran90 Interface: h5sis_simple_f
SUBROUTINE h5sis_simple_f(space_id, flag, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: space_id ! Dataspace identifier
LOGICAL, INTENT(OUT) :: flag ! Flag, indicates if dataspace
! is simple or not:
! Non-negative
INTEGER, INTENT(OUT) :: hdferr ! Error code
END SUBROUTINE h5sis_simple_f
Parameters:
hid_t space_id IN: Identifier of the dataspace to query
Description:
H5S_IS_SIMPLE determines whether a dataspace is a simple dataspace. [Currently, all dataspace objects are simple dataspaces; complex dataspace support will be added in the future.]
Returns:
Returns a positive value if the specified dataspace is a simple dataspace.
Returns 0 if the specified dataspace is not a simple dataspace.
Returns a negative value when the function fails.
Example:
History:
--- Last Modified: June 02, 2020 | 11:04 AM