H5Tequal
(hid_t type_id1
,
hid_ttype_id2
)
H5Tequal
determines whether two datatype identifiers
refer to the same datatype.
hid_t type_id1 |
Identifier of datatype to compare. |
hid_t type_id2 |
Identifier of datatype to compare. |
TRUE
,
if the datatype identifiers refer to the same datatype,
or 0
(zero), for FALSE
.
Otherwise returns a negative value.
SUBROUTINE h5tequal_f(type1_id, type2_id, flag, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: type1_id ! Datatype identifier INTEGER(HID_T), INTENT(IN) :: type2_id ! Datatype identifier LOGICAL, INTENT(OUT) :: flag ! TRUE/FALSE flag to indicate ! if two datatypes are equal INTEGER, INTENT(OUT) :: hdferr ! Error code END SUBROUTINE h5tequal_f