pub unsafe extern "C" fn CSTL_vector_move_insert(
instance: CSTL_VectorRef,
move_: CSTL_MoveTypeCRef,
where_: CSTL_VectorIter,
value: *mut c_void,
alloc: *mut CSTL_Alloc,
) -> CSTL_VectorIterExpand description
Inserts value into the vector before where by moving it 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, ...).