H5Sis_simple
(
hid_t space_id
)
H5Sis_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.]
hid_t space_id |
IN: Identifier of the dataspace to query |
TRUE
,
or 0
(zero), for FALSE
.
Otherwise returns a negative value.
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: ! TRUE or FALSE INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5sis_simple_f