![]() |
MobilityDB 1.3
|
◆ set_make_exp()Return a set from an array of values enabling the data structure to expand. The memory structure depends on whether the value is passed by value or by reference. For example, the memory structure of a set with two values passed by value and passed by reference are, respectively, as follows --------------------------------------------------------------------------
| Header | count | maxcount | bboxsize | ( bbox )_X | Value_0 | Value_1 |
--------------------------------------------------------------------------
----------------------------------------------------------------------
| Header | count | maxcount | bboxsize | ( bbox )_X | offset_0 | ...
----------------------------------------------------------------------
-------------------------------------
... | offset_1 | Value_0 | Value_1 |
-------------------------------------
where
|