![]() |
HDF5
1.8.23
C-API Reference
|
Functions | |
hid_t | H5Tvlen_create (hid_t base_id) |
Creates a new variable-length array datatype. More... | |
Creates a new variable-length array datatype.
[in] | base_id | Datatype identifier, the element type of the datatype to create |
H5Tvlen_create() creates a new one-dimensional array datatype of variable-length (VL) with the base datatype base_id
.
This one-dimensional array often represents a data sequence of the base datatype, such as characters for character sequences or vertex coordinates for polygon lists. The base type specified for the VL datatype can be any HDF5 datatype, including another VL datatype, a compound datatype, or an atomic datatype.
When necessary, use H5Tget_super() to determine the base type of the VL datatype.
The datatype identifier returned from this function should be released with H5Tclose() or resource leaks will result. Under certain circumstances, H5Dvlen_reclaim() must also be used.