vlen
Vlen, short for variable-length, is a data type concept used in computing and data storage to represent elements whose size can vary from one instance to another. It contrasts with fixed-length types, where every element occupies the same amount of memory. Variable-length types enable compact and flexible representations of data such as lists, strings, or sub-arrays that do not have a uniform length.
In practical data formats, the most common use of vlen is within hierarchical data formats like HDF5.
Typical use cases include ragged or irregular data structures, such as sequences of tokens per record, varying-length
See also: variable-length data types, ragged arrays, HDF5, and data serialization concepts.