pub unsafe extern "C" fn CSTL_vector_copy_insert(
instance: CSTL_VectorRef,
copy: CSTL_CopyTypeCRef,
where_: CSTL_VectorIter,
value: *const c_void,
alloc: *mut CSTL_Alloc,
) -> CSTL_VectorIterExpand description
Inserts a copy of value into the vector before where and returns
an iterator to the newly inserted element.
If CSTL_vector_size(instance, ...) == CSTL_vector_max_size(...) (vector too long)
this function has no effect and returns CSTL_vector_end(instance, ...).