Function CSTL_vector_move_push_back

Source
pub unsafe extern "C" fn CSTL_vector_move_push_back(
    instance: CSTL_VectorRef,
    type_: CSTL_Type,
    move_: CSTL_MoveTypeCRef,
    value: *mut c_void,
    alloc: *mut CSTL_Alloc,
) -> bool
Expand description

Appends value to the end of the vector by moving it.

If CSTL_vector_size(instance, type) == CSTL_vector_max_size(type) (vector too long) this function has no effect and returns false, otherwise it returns true.