Function CSTL_vector_copy_insert_range

Source
pub unsafe extern "C" fn CSTL_vector_copy_insert_range(
    instance: CSTL_VectorRef,
    copy: CSTL_CopyTypeCRef,
    where_: CSTL_VectorIter,
    range_first: *const c_void,
    range_last: *const c_void,
    alloc: *mut CSTL_Alloc,
) -> CSTL_VectorIter
Expand description

Inserts a copy of the range [range_first, range_last) into the vector before where and returns an iterator to the newly inserted elements.

Exceeding the maximum possible vector size has the same effect as CSTL_vector_copy_insert, returning CSTL_vector_end(instance, ...).