H5Isearch

fnvoid * H5Isearch(H5I_type_t type, H5I_search_func_t func, void * key)

Searches through identifiers of a given type.

Calls the provided function for each identifier in the type until the function returns a positive value or all identifiers have been examined.

Parameters

typeThe identifier type to search
funcThe search callback function
keyUser-supplied key passed to the callback

Returns

A pointer to the object that matched (callback returned positive),

or null if no match was found or on error.