H5Sextent_equal
(
hid_t space1_id
,
hid_t space2_id
)
H5Sextent_equal
determines whether the dataspace extents
of two dataspaces, space1_id
and space2_id
,
are equal.
hid_t space1_id |
IN: First dataspace identifier. |
hid_t space2_id |
IN: Second dataspace identifier. |
TRUE
if equal, FALSE
if unequal, if successful; otherwise returns a negative value.
SUBROUTINE h5sextent_equal_f(space1_id, space2_id, equal, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: space1_id ! First dataspace identifier INTEGER(HID_T), INTENT(IN) :: space2_id ! Second dataspace identifier LOGICAL, INTENT(OUT) :: Equal ! .TRUE. if equal, .FALSE. if unequal INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5sextent_equal_f