Documentation

VecClear

VecClear Description Clear vec contents.

Read More

VecDeinit

VecDeinit Description Deinit vec by freeing all allocations.

Read More

VecDelete

VecDelete Description Delete item at given index

Read More

VecDeleteFast

VecDeleteFast Description Delete item at given index using faster implementation. Order preservation is not guaranteed

Read More

VecDeleteLast

VecDeleteLast Description Delete last item from vec

Read More

VecDeleteRange

VecDeleteRange Description Delete items in given range [start, start + count)

Read More

VecDeleteRangeFast

VecDeleteRangeFast Description Delete items in given range [start, start + count) using faster implementation. Order preservation is not guaranteed

Read More

VecEnd

VecEnd Description Pointer at the end (after last element) of vector

Read More

VecFirst

VecFirst Description Value of first element in vector.

Read More

VecForeach

VecForeach Description Iterate over each element var of the given vector v. This is a convenience macro that iterates forward using an internally managed index. The variable var is declared and defined by this macro.

Read More