* Appends a number of elements to this array from a C native array. * @param num The number of elements to append. * @param array The C native array that contains the values to append. */
| 684 | * @param array The C native array that contains the values to append. |
| 685 | */ |
| 686 | void appendArray( size_t num, T *array ) |
| 687 | { |
| 688 | if ( array == NULL ) |
| 689 | return; |
| 690 | |
| 691 | for ( size_t i = 0; i < num; i++ ) |
| 692 | append( array[i] ); |
| 693 | } |
| 694 | /** |
| 695 | * Appends a number of elements to this array from another daeTArray. |
| 696 | * @param array The daeTArray that contains the values to append. |
no test coverage detected