Skip to content

cf_array_del

Category: array
GitHub: cute_array.h


Removes an element by swapping it with the last element (unordered).

#define cf_array_del(a, i) adel(a, i)
Parameters Description
a The array.
i The index of the element to remove.

Remarks

Shortform: adel(a, i). Does not preserve order.

cf_array_pop
cf_array_size