590 /** |
590 /** |
591 * Inserts a sorted array into another sorted array, avoiding duplicates. |
591 * Inserts a sorted array into another sorted array, avoiding duplicates. |
592 * |
592 * |
593 * If either the target or the source array is not already sorted with respect |
593 * If either the target or the source array is not already sorted with respect |
594 * to the specified @p cmp_func, the behavior is undefined. |
594 * to the specified @p cmp_func, the behavior is undefined. |
595 * Also, the @p src array must not contain duplicates within itself. |
|
596 * |
595 * |
597 * If the capacity is insufficient to hold the new data, a reallocation |
596 * If the capacity is insufficient to hold the new data, a reallocation |
598 * attempt is made. |
597 * attempt is made. |
599 * You can create your own reallocator by hand, use #cx_array_default_reallocator, |
598 * You can create your own reallocator by hand, use #cx_array_default_reallocator, |
600 * or use the convenience function cx_array_reallocator() to create a custom reallocator. |
599 * or use the convenience function cx_array_reallocator() to create a custom reallocator. |