Jump to ...
Summary
Description
Example
Switch language ...
C
C++
FORTRAN
JAVA
Tags an opaque datatype
H5T_SET_TAG ( dtype_id, tag )
herr_t H5Tset_tag( hid_t dtype_id const char *tag )
SUBROUTINE h5tset_tag_f(type_id, tag, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier CHARACTER(LEN=*), INTENT(IN) :: tag ! Unique ASCII string with which the ! opaque datatype is to be tagged INTEGER, INTENT(OUT) :: hdferr ! Error code END SUBROUTINE h5tset_tag_f
dtype_id
tag
H5T_SET_TAG tags an opaque datatype dtype_id with a descriptive ASCII identifier, tag.
tag is intended to provide a concise description; the maximum size is hard-coded in the HDF5 library as 256 bytes (H5T_OPAQUE_TAG_MAX).
H5T_OPAQUE_TAG_MAX
Returns a non-negative value if successful; otherwise returns a negative value.
Coming Soon!
H5Tpublic.h
--- Last Modified: January 08, 2020 | 01:05 PM