pub unsafe extern "C" fn array_container_grow(
    container: *mut array_container_t,
    min: i32,
    preserve: bool
)
Expand description

Increase capacity to at least min. Whether the existing data needs to be copied over depends on the “preserve” parameter. If preserve is false, then the new content will be uninitialized, otherwise the old content is copied.