:orphan: .. index:: pair: group; Dynamic vectors. .. _doxid-group__te__tools__te__vec: Dynamic vectors. ================ .. toctree:: :hidden: struct_te_vec.rst Overview ~~~~~~~~ Implementation of dynamic vectors. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef void :ref:`te_vec_item_destroy_fn`(const void *item); typedef struct :ref:`te_vec` :ref:`te_vec`; // structs struct :ref:`te_vec`; // global variables :ref:`te_vec_item_destroy_fn` :ref:`te_vec_item_free_ptr`; // global functions void :target:`te_vec_set_destroy_fn_safe`(:ref:`te_vec`* vec, :ref:`te_vec_item_destroy_fn`* destroy); static size_t :ref:`te_vec_size`(const :ref:`te_vec`* vec); static const void* :target:`te_vec_get_immutable`(const :ref:`te_vec`* vec, size_t index); static void* :target:`te_vec_get_mutable`(:ref:`te_vec`* vec, size_t index); static const void* :target:`te_vec_get_safe_immutable`(const :ref:`te_vec`* vec, size_t index, size_t element_size); static void* :target:`te_vec_get_safe_mutable`(:ref:`te_vec`* vec, size_t index, size_t element_size); :ref:`te_errno` :ref:`te_vec_append`(:ref:`te_vec`* vec, const void* element); :ref:`te_errno` :ref:`te_vec_append_vec`(:ref:`te_vec`* vec, const :ref:`te_vec`* other); :ref:`te_errno` :ref:`te_vec_append_array`(:ref:`te_vec`* vec, const void* elements, size_t count); :ref:`te_errno` :ref:`te_vec_append_str_fmt`(:ref:`te_vec`* vec, const char* fmt, ...); :ref:`te_errno` void* :ref:`te_vec_replace`(:ref:`te_vec`* vec, size_t index, const void* new_val); void :ref:`te_vec_transfer`(:ref:`te_vec`* vec, size_t index, void* dest); size_t :ref:`te_vec_transfer_append`(:ref:`te_vec`* vec, size_t start_index, size_t count, :ref:`te_vec`* dest_vec); void :ref:`te_vec_remove`(:ref:`te_vec`* vec, size_t start_index, size_t count); static void :ref:`te_vec_remove_index`(:ref:`te_vec`* vec, size_t index); static :ref:`te_errno` :ref:`te_vec_append_array_safe`(:ref:`te_vec`* vec, const void* elements, size_t count, size_t element_size); void :ref:`te_vec_reset`(:ref:`te_vec`* vec); void :ref:`te_vec_free`(:ref:`te_vec`* vec); void :ref:`te_vec_deep_free`(:ref:`te_vec`* vec); :ref:`te_errno` :ref:`te_vec_append_strarray`(:ref:`te_vec`* vec, const char** elements); static size_t :ref:`te_vec_get_index`(const :ref:`te_vec`* vec, const void* ptr); :ref:`te_errno` :ref:`te_vec_split_string`(const char* str, :ref:`te_vec`* strvec, char sep, bool empty_is_none); void :ref:`te_vec_sort`(:ref:`te_vec`* vec, int(*)(const void*elt1, const void*elt2) compar); bool :ref:`te_vec_search`(const :ref:`te_vec`* vec, const void* key, int(*)(const void*key, const void*elt) compar, unsigned int* minpos, unsigned int* maxpos); // macros #define :ref:`TE_VEC_APPEND`(te_vec_, val_) #define :ref:`TE_VEC_APPEND_ARRAY`(te_vec_, elements_, count_) #define :ref:`TE_VEC_APPEND_RVALUE`(te_vec_, type_, val_) #define :ref:`TE_VEC_FOREACH`(te_vec_, elem_) #define :ref:`TE_VEC_GET`(type_, te_vec_, index_) #define :ref:`TE_VEC_INIT`(type_) #define :ref:`TE_VEC_INIT_AUTOPTR`(type_) #define :ref:`TE_VEC_INIT_COMPLETE`(type_, grow_factor_, destroy_) #define :ref:`TE_VEC_INIT_DESTROY`(type_, destroy_) #define :ref:`TE_VEC_INIT_GROW_FACTOR`(type_, grow_factor_) #define :target:`TE_VEC_INIT_LIKE`(other_) #define :ref:`te_vec_get`(vec_, index_) #define :ref:`te_vec_get_safe`(vec_, index_, element_size_) .. _details-group__te__tools__te__vec: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Implementation of dynamic vectors. Example of usage: .. ref-code-block:: cpp // Initialize the dynamic vector to store a value of type int. :ref:`te_vec ` vec = :ref:`TE_VEC_INIT `(int) int number = 42; ... // Put a number into the dynamic vector. TE_VEC_APPEND(&vec, number); ... // Copy from a C array int numbers[] = {4, 2}; :ref:`te_vec_append_array `(&vec, numbers, :ref:`TE_ARRAY_LEN `(numbers)); ... // Change the first element. TE_VEC_GET(int, &vec, 0) = 100; ... // Free the memory. te_vec_free(&vec); Typedefs -------- .. index:: pair: typedef; te_vec_item_destroy_fn .. _doxid-group__te__tools__te__vec_1ga6a03d5a2b2b7195e87f466dd8f2b7fd0: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef void te_vec_item_destroy_fn(const void *item) Function type for vector element destructors. The destructor accepts a pointer to a vector element which it is not supposed to modify, *not* a pointer to a deallocatable memory, so e.g. a destructor that frees a ``char *`` typed element would look like: .. ref-code-block:: cpp static void item_destroy_str(const void *item) { char *buf = *(void * const *)item; free(buf); } The destructor function shall be prepared to deal correctly with all-zero initialized elements. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - item - A pointer to a vector element data. .. index:: pair: typedef; te_vec .. _doxid-group__te__tools__te__vec_1gad55d18d3004f2a520d75bb1b98105036: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`te_vec` te_vec Dynamic vector. Global Variables ---------------- .. index:: pair: variable; te_vec_item_free_ptr .. _doxid-group__te__tools__te__vec_1ga5b80d47c73100206ecbc65e37db8197b: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_vec_item_destroy_fn` te_vec_item_free_ptr A destructor to release vector elements that contain a single heap memoy pointer. Global Functions ---------------- .. index:: pair: function; te_vec_size .. _doxid-group__te__tools__te__vec_1ga321b2da4ef0f541420152824dcb1e268: .. ref-code-block:: cpp :class: doxyrest-title-code-block static size_t te_vec_size(const :ref:`te_vec`* vec) Count elements in a dynamic vector. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. .. rubric:: Returns: Number of elements. .. index:: pair: function; te_vec_append .. _doxid-group__te__tools__te__vec_1gaf001e175f1699f31e1c13c8dd52a4553: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_vec_append(:ref:`te_vec`* vec, const void* element) Append one element to the dynamic array. If ``element`` is ``NULL``, the new element will be zeroed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. * - element - Element to append (may be ``NULL``). .. rubric:: Returns: Status code (always 0). .. index:: pair: function; te_vec_append_vec .. _doxid-group__te__tools__te__vec_1gae344b362d0046f73f08557261832a901: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_vec_append_vec(:ref:`te_vec`* vec, const :ref:`te_vec`* other) Append elements from ``other`` dynamic array, Both vectors must have a null element destructor. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. * - other - Other dynamic vector. .. rubric:: Returns: Status code (always 0). .. index:: pair: function; te_vec_append_array .. _doxid-group__te__tools__te__vec_1ga16f5a13a6945869f2173da37234f041e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_vec_append_array(:ref:`te_vec`* vec, const void* elements, size_t count) Append elements from a plain C array to the dynamic array. If ``elements`` is ``NULL``, the news element will be zeroed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. * - elements - Elements of array (may be ``NULL``). * - count - Number of ``elements``. .. rubric:: Returns: Status code (always 0). .. index:: pair: function; te_vec_append_str_fmt .. _doxid-group__te__tools__te__vec_1gaeefcac77e58dd73f4ac526cf70003485: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_vec_append_str_fmt(:ref:`te_vec`* vec, const char* fmt, ...) Append a formatted C string to the dynamic array. The string in the vector will be heap-allocated. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector of C strings. * - fmt - Format string. * - ... - Format string arguments. .. rubric:: Returns: Status code (always 0). .. index:: pair: function; te_vec_replace .. _doxid-group__te__tools__te__vec_1gadfdfbcd331b190745a0f99882e1bc532: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` void* te_vec_replace(:ref:`te_vec`* vec, size_t index, const void* new_val) Replace the content of ``index'th`` element of ``vec`` with ``new_val``. If ``new_val`` is ``NULL``, the content of the element is zeroed. A destructor function (if it is set) is called for the old content. If ``index`` is larger than the ``vec`` size, it is grown as needed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. * - index - Index to replace. * - new_val - New content (may be ``NULL``). .. rubric:: Returns: A pointer to the new content of the element. .. index:: pair: function; te_vec_transfer .. _doxid-group__te__tools__te__vec_1ga700401e092cacd77416c03dfaa672185: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_vec_transfer(:ref:`te_vec`* vec, size_t index, void* dest) Move the content of a vector element to ``dest``. This function is mostly useful for vectors with non-null destructors. Basically, it implements move semantics for vector elements. If ``dest`` is not ``NULL``, the content of ``index'th`` element is copied to ``dest``; destructors are not called. If ``dest`` is ``NULL``, the destructor is called on ``index'th`` element. In both cases the element is zeroed afterwards. This ensures that calling the destructor for the second time would not cause bugs like double-free. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. * - index - Index to move. * - dest - Destination (may be ``NULL``). .. index:: pair: function; te_vec_transfer_append .. _doxid-group__te__tools__te__vec_1ga36b16f1d09a2ba2d5dd3baa7737ec736: .. ref-code-block:: cpp :class: doxyrest-title-code-block size_t te_vec_transfer_append(:ref:`te_vec`* vec, size_t start_index, size_t count, :ref:`te_vec`* dest_vec) Move at most ``count`` elements from ``vec`` to ``dest_vec``. If ``dest_vec`` is not ``NULL``, elements starting from ``start_index`` are appended to it and the elements are zeroed like with :ref:`te_vec_transfer() `. If ``dest_vec`` is ``NULL``, the destructor is called on the elements. If ``start_index`` + ``count`` is greater than the vector size, ``count`` is decreased as needed. ``dest_vec`` must either have a null element destructor or the same destructor as ``vec``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Source vector. * - start_index - Starting index. * - count - Number of elements. * - dest_vec - Destination vector (may be ``NULL``). .. rubric:: Returns: The number of actually transferred elements. .. index:: pair: function; te_vec_remove .. _doxid-group__te__tools__te__vec_1ga3a004adfe3437e2cb306afd38e9a338b: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_vec_remove(:ref:`te_vec`* vec, size_t start_index, size_t count) Remove elements from a vector. If ``vec`` has a non-null element destructor, it will be called for each element. If ``start_index`` + ``count`` is greater than the vector size, ``count`` is decreased as needed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. * - start_index - Starting index of elements to remove. * - count - Number of elements to remove. .. index:: pair: function; te_vec_remove_index .. _doxid-group__te__tools__te__vec_1ga5d33ad7a608d2dbdeac6919522cf289f: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_vec_remove_index(:ref:`te_vec`* vec, size_t index) Remove an element from a vector. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. * - index - Index of an element to remove. .. index:: pair: function; te_vec_append_array_safe .. _doxid-group__te__tools__te__vec_1ga2ef821d12c6df70e17b53a4943d6a1ec: .. ref-code-block:: cpp :class: doxyrest-title-code-block static :ref:`te_errno` te_vec_append_array_safe(:ref:`te_vec`* vec, const void* elements, size_t count, size_t element_size) Safe version of :ref:`te_vec_append_array() `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. * - elements - Elements of an array. * - count - Number of ``elements``. * - element_size - Size of one element in ``elements``. .. rubric:: Returns: Status code (always 0). .. index:: pair: function; te_vec_reset .. _doxid-group__te__tools__te__vec_1ga8d16e64e72c03751954bcf6ac86a405f: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_vec_reset(:ref:`te_vec`* vec) Reset a dynamic array. The number of elements in the array becomes zero. A destructor function is called for each element if it is defined. The memory of the vector itself is not released. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. .. rubric:: See also: :ref:`te_vec_free() ` .. index:: pair: function; te_vec_free .. _doxid-group__te__tools__te__vec_1ga6c853617db506f6e683ed846b10afa17: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_vec_free(:ref:`te_vec`* vec) Cleanup a dynamic array and free its storage memory. A destructor function is called for each element if it is defined. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. .. index:: pair: function; te_vec_deep_free .. _doxid-group__te__tools__te__vec_1ga314a88566f2f97ed978699c6d82ffba4: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_vec_deep_free(:ref:`te_vec`* vec) Free the dynamic array along with its elements. The function does exactly the same as :ref:`te_vec_free() ` unless ``vec`` has a null destructor, in which case it treats elements as pointers to heap memory and free() them. Deprecated Use :ref:`te_vec_free() ` with a proper destructor. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector of pointers. .. index:: pair: function; te_vec_append_strarray .. _doxid-group__te__tools__te__vec_1ga52d8b56cb564d8084699b628486035a1: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_vec_append_strarray(:ref:`te_vec`* vec, const char** elements) Append to a dynamic array of strings. The elements in the array will be strdup()'ed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector to append the array of strings to. * - elements - ``NULL`` terminated array of strings .. rubric:: Returns: Status code (always 0). .. index:: pair: function; te_vec_get_index .. _doxid-group__te__tools__te__vec_1ga516b8e04b38f373989ae11a1dd584294: .. ref-code-block:: cpp :class: doxyrest-title-code-block static size_t te_vec_get_index(const :ref:`te_vec`* vec, const void* ptr) Return an index of an element of ``vec`` pointed to by ``ptr``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Dynamic vector. * - ptr - Pointer to the content of some of its elements. .. rubric:: Returns: Zero-based index. The result is undefined if ``ptr`` is not pointing to the actual vector data .. index:: pair: function; te_vec_split_string .. _doxid-group__te__tools__te__vec_1gac7fbb661a922fec39a2de69ff06ecaf3: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_vec_split_string(const char* str, :ref:`te_vec`* strvec, char sep, bool empty_is_none) Split a string into chunks separated by ``sep``. The copies of the chunks are pushed into the ``strvec``. The element size of ``strvec`` must be ``sizeof(char *)``. Adjacent separators are never skipped, so e.g. ``'::`` :' would be split into four chunks using colon as a separator. The only special case is an empty string which may be treated as no chunks depending on ``empty_is_none``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - String to split. * - strvec - Target vector for string chunks. The original content is **not** destroyed, new items are added to the end. * - sep - Separator character. * - empty_is_none - If ``true``, empty string is treated as having no chunks (so ``strvec`` is not changed). Otherwise, an empty string is treated as having a single empty chunk. .. rubric:: Returns: Status code (always 0). .. index:: pair: function; te_vec_sort .. _doxid-group__te__tools__te__vec_1ga7f93e6fc2ad3812f18fa944d3f1db235: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_vec_sort(:ref:`te_vec`* vec, int(*)(const void*elt1, const void*elt2) compar) Sort the elements of ``vec`` in place according to ``compar``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Vector to sort. * - compar - Comparison function (as for ``qsort``). .. index:: pair: function; te_vec_search .. _doxid-group__te__tools__te__vec_1gaa9044d0a4ce1e3f83d444cb8fe0b2595: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool te_vec_search(const :ref:`te_vec`* vec, const void* key, int(*)(const void*key, const void*elt) compar, unsigned int* minpos, unsigned int* maxpos) Search a sorted vector ``vec`` for an item equal to ``key`` using ``compar`` as a comparison function. The function implements binary search, however unlike C standard bsearch() it can be reliably used on non-unique matches, because it returns the lowest and the highest indices of matching elements. Mind the order of arguments. ``compar`` expects the **first** argument to be a key and the second argument to be an array element, for a compatibility with bsearch(). However, the order of arguments of the function itself is reverse wrt bsearch(): the vector goes first and the key follows it for consistency with other vector functions. For cases where the key has the same structure as the array element, this should not matter. The vector must be sorted in a way compatible with ``compar``, i.e. by using :ref:`te_vec_sort() ` with the same ``compar``, however, the comparison functions need not to be truly identical: the search comparison function may treat more elements as equal than the sort comparison. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec - Vector to search in. * - key - Key to search. * - compar - Comparison function (as for ``bsearch``). * - minpos - The lowest index of a matching element. * - maxpos - The highest index of a matchin element. Any of ``minpos`` and ``maxpos`` may be ``NULL``. If they are both ``NULL``, the function just checks for an existence of a matching element. .. rubric:: Returns: ``true`` iff an element matching ``key`` is found. Macros ------ .. index:: pair: define; TE_VEC_APPEND .. _doxid-group__te__tools__te__vec_1ga037cdb93aebd124716df61a163100182: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_VEC_APPEND(te_vec_, val_) Add element to the vector's tail. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - te_vec\_ - Dynamic vector. * - val\_ - New element. .. rubric:: Returns: Status code (always 0). .. index:: pair: define; TE_VEC_APPEND_ARRAY .. _doxid-group__te__tools__te__vec_1ga3bdcaef2427ff50758bfde8f539cc955: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_VEC_APPEND_ARRAY(te_vec_, elements_, count_) Append elements from a C array to the dynamic vector (safe version). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - te_vec\_ - Dynamic vector. * - elements\_ - C array. * - count\_ - Count of ``elements`` .. rubric:: Returns: Status code (always 0). .. index:: pair: define; TE_VEC_APPEND_RVALUE .. _doxid-group__te__tools__te__vec_1ga91e1e0228503e4ea7f700823414a4a9a: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_VEC_APPEND_RVALUE(te_vec_, type_, val_) Add element to the vector's tail. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - te_vec\_ - Dynamic vector. * - type\_ - Element type. * - val\_ - New element. .. rubric:: Returns: Status code (always 0). .. index:: pair: define; TE_VEC_FOREACH .. _doxid-group__te__tools__te__vec_1ga6675cbd932c652cb28f6ac5192c579ff: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_VEC_FOREACH(te_vec_, elem_) Iterate over all elements in a vector. Example: .. ref-code-block:: cpp struct netinterface { int index; const char *name; }; te_vec vec = TE_VEC_INIT(struct netinterface); ... // Fill vector with values struct netinterface *netif; TE_VEC_FOREACH(&vec, netif) { printf("interface '%s' have index %d", netif->name, netif->index); } .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - te_vec\_ - Dynamic vector. * - elem\_ - Pointer of type contain in vector. .. index:: pair: define; TE_VEC_GET .. _doxid-group__te__tools__te__vec_1ga4b20475d848bd68cc516074c84431c76: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_VEC_GET(type_, te_vec_, index_) Vector element accessor. For vectors with a non-null destructor :ref:`te_vec_replace() ` should be used instead of mutable :ref:`TE_VEC_GET() `, as it guarantees proper disposal of old element contents. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - type\_ - Type of element. * - te_vec\_ - Dynamic vector. * - index\_ - Index of element. .. rubric:: Returns: Element of a vector. .. index:: pair: define; TE_VEC_INIT .. _doxid-group__te__tools__te__vec_1ga6c334fd7bafc2cd6891ad49ffbc46c7b: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_VEC_INIT(type_) Vector initializer with the default grow factor. The element destructor may be later set with te_vec_set_destroy_fn_safe(). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - type\_ - Element type. .. index:: pair: define; TE_VEC_INIT_AUTOPTR .. _doxid-group__te__tools__te__vec_1ga3125518931c0d84c820aa5450e05c426: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_VEC_INIT_AUTOPTR(type_) Vector initializer for heap-allocated pointers. The destructor is set to :ref:`te_vec_item_free_ptr() `. Additionally a check is made that ``type_`` is at least the same size as a pointer type. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - type\_ - Element type (which must be a pointer type). .. index:: pair: define; TE_VEC_INIT_COMPLETE .. _doxid-group__te__tools__te__vec_1ga25b3763381cf7df96ceefe1193cc0e87: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_VEC_INIT_COMPLETE(type_, grow_factor_, destroy_) Complete initializer for a :ref:`te_vec `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - type\_ - Element type. * - grow_factor\_ - Grow factor (see :ref:`TE_DBUF_DEFAULT_GROW_FACTOR `). * - destroy\_ - Element destructor (or ``NULL``). .. index:: pair: define; TE_VEC_INIT_DESTROY .. _doxid-group__te__tools__te__vec_1gae4dca9a9d9cff12c187eb659946bb669: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_VEC_INIT_DESTROY(type_, destroy_) Vector initializer with a possibly non-null destructor. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - type\_ - Element type. * - destroy\_ - Element destructor or ``NULL``. .. index:: pair: define; TE_VEC_INIT_GROW_FACTOR .. _doxid-group__te__tools__te__vec_1ga476d0a2dbed9597181cce78addbf0fd3: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_VEC_INIT_GROW_FACTOR(type_, grow_factor_) Vector initializer with a custom grow factor. The element destructor may be later set with te_vec_set_destroy_fn_safe(). Most users shall stick to :ref:`TE_DBUF_DEFAULT_GROW_FACTOR `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - type\_ - Element type. * - grow_factor\_ - Grow factor (see :ref:`TE_DBUF_DEFAULT_GROW_FACTOR `). .. index:: pair: define; te_vec_get .. _doxid-group__te__tools__te__vec_1ga77a1180032c5853632910eb48e277a58: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define te_vec_get(vec_, index_) Access an element of a dynamic vector. The macro returns either mutable or immutable pointer depending on the constness of ``vec_``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec\_ - Dynamic vector. * - index\_ - Index of element. .. rubric:: Returns: Pointer to the content of an element. .. index:: pair: define; te_vec_get_safe .. _doxid-group__te__tools__te__vec_1gada4b09bed8c44602c4874d6ad8fbdde1: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define te_vec_get_safe(vec_, index_, element_size_) Safe version of :ref:`te_vec_get() `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - vec\_ - Dynamic vector. * - index\_ - Index of element. * - element_size\_ - Expected size of type in array. .. rubric:: Returns: Pointer to element.