Retrieves the edge chunk option setting from a dataset creation property list
Procedure:
H5P_GET_CHUNK_OPTS ( dcpl_id, opts )
Signature:
herr_t H5Pget_chunk_opts(
hid_t dcpl_id,
unsigned *opts
)
Parameters:
id_t
dcpl_id | IN: Dataset creation property list identifier |
unsigned opts | OUT: Edge chunk option flag Valid values are described in H5P_SET_CHUNK_OPTS. The option status can be retrieved using the bitwise AND operator ( & ). For example, the expression (opts&H5D_CHUNK_DONT_FILTER_PARTIAL_CHUNKS) will evaluate to H5D_CHUNK_DONT_FILTER_PARTIAL_CHUNKS if that option has been enabled. Otherwise, it will evaluate to 0 (zero). |
Description:
H5P_GET_CHUNK_OPTS retrieves the edge chunk option setting stored in the dataset creation property list dcpl_id
.
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
History:
Release | Change |
---|
1.10.0 | C function introduced with this release. |
--- Last Modified: August 06, 2019 | 02:15 PM