#[no_mangle]
pub unsafe extern "C" fn nstd_collections_vec_remove(
    vec: &mut NSTDVec,
    index: usize
) -> NSTDErrorCode
Expand description

Removes an element at index for a vector. Parameters: NSTDVec *const vec - The vector. const NSTDUSize index - The index of the element to remove. Returns: NSTDErrorCode errc - Nonzero on error.