H5Pset_attr_creation_order
(
hid_t ocpl_id
,
unsigned crt_order_flags
)
H5Pset_attr_creation_order
sets flags specifying
whether to track and index attribute creation order on an object.
ocpl_id
is a dataset or group creation property list
identifier. The term ocpl
, for object creation property
list, is used when different types of objects may be involved.
crt_order_flags
contains flags with the
following meanings:
|
H5P_CRT_ORDER_TRACKED
| Attribute creation order is tracked but not necessarily indexed. |
|
H5P_CRT_ORDER_INDEXED
|
Attribute creation order is indexed
(requires H5P_CRT_ORDER_TRACKED ).
|
hid_t ocpl_id
|
IN: Object creation property list identifier |
unsigned crt_order_flags
|
IN: Flags specifying whether to track and index
attribute creation order
Default: No flag set; attribute creation order is neither tracked not indexed. |
SUBROUTINE h5pget_attr_creation_order_f(ocpl_id, crt_order_flags, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: ocpl_id ! Object (group or dataset) creation property ! list identifier INTEGER, INTENT(OUT) :: crt_order_flags ! Flags specifying whether to track ! and index attribute creation order INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5pget_attr_creation_order_f
Release | C |
1.8.0 | Function introduced in this release. |