Lines Matching full:elements
199 * Resets the number of elements in the array. If the array increases in size, the new
200 * elements will be initialized to the specified value.
202 * @param value The value new elements will be initialized to.
208 // Destruct the elements that are being chopped off
211 // Use value to initialize the new elements
218 * Resets the number of elements in the array. If the array increases in size, the new
219 * elements will be initialized with a default constructor.
363 * Inserts the specified number of elements at a specific location in the array.
364 * @param index Index into the array where the elements will be inserted
365 * @param n The number of elements to insert
596 * @return Returns The number of elements retrieved.
619 * @return Returns The number of elements retrieved.
648 * @return Returns The number of elements retrieved.
677 * Appends a number of elements to this array from a C native array.
678 * @param num The number of elements to append.
690 * Appends a number of elements to this array from another daeTArray.