Library-owned usize vector returned to C. More...
#include <core.h>
Data Fields | |
| size_t * | data |
| Pointer to the first element, or null for an empty vector. | |
| size_t | len |
| Number of initialized elements. | |
| size_t | capacity |
| Allocation capacity, used only by copp_vec_usize_free. | |
Library-owned usize vector returned to C.
C callers may read data[0..len] and must release the vector exactly once with copp_vec_usize_free.
| size_t* CoppVecUsize::data |
Pointer to the first element, or null for an empty vector.
| size_t CoppVecUsize::len |
Number of initialized elements.
| size_t CoppVecUsize::capacity |
Allocation capacity, used only by copp_vec_usize_free.