Documentation

VecPushFrontR

VecPushFrontR Description Push item into vector front.

Read More

VecRemove

VecRemove Description Remove item from vector at given index and store in given pointer. Order of elements is guaranteed to be preserved.

Read More

VecRemoveFast

VecRemoveFast Description Remove item from vector at given index and store in given pointer. Order of elements inside vector is not guaranteed to be preserved. The implementation is faster in some scenarios that VecRemove

Read More

VecRemoveRange

VecRemoveRange Description Remove data from vector in given range [start, start + count) Order of elements is guaranteed to be preserved.

Read More

VecRemoveRangeFast

VecRemoveRangeFast Description Remove item from vector at given index and store in given pointer. Order of elements inside vector is not guaranteed to be preserved. The implementation is faster in some scenarios that VecRemove

Read More

VecReserve

VecReserve Description Reserve space for vector.

Read More

VecResize

VecResize Description Resize vector. If length is smaller than current capacity, vector length is shrinked. If length is greater than current capacity, space is reserved and vector is expanded.

Read More

VecReverse

VecReverse Description Reverse contents of this vector.

Read More

VecSize

VecSize Description Size of vector in bytes. Use this instead of multiplying size of item with vector length!

Read More

VecSort

VecSort Description Sort given vector with given comparator using quicksort algorithm.

Read More