Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5T_FIND

Finds a conversion function

Procedure:

H5T_FIND (src_id, dst_id, pcdata)

Signature:

H5T_conv_t H5Tfind(hid_t src_id, hid_t dst_id, H5T_cdata_t **pcdata )

Parameters:
hid_t src_idIN: Identifier for the source datatype
hid_t dst_idIN: Identifier for the destination datatype
H5T_cdata_t **pcdata    OUT: Pointer to type conversion data

Description:

 H5T_FIND finds a conversion function that can handle a conversion from type src_id to type dst_id. The pcdata argument is a pointer to a pointer to type conversion data which was created and initialized by the soft type conversion function of this path when the conversion function was installed on the path.

Returns:

Returns a pointer to a suitable conversion function if successful. Otherwise returns NULL.

Example:

Coming Soon!

--- Last Modified: May 16, 2019 | 08:59 AM