| 166 | inline T* getArray() const { return array; } |
| 167 | |
| 168 | inline T* detachArray() { |
| 169 | T* arr = array; |
| 170 | array = NULL; |
| 171 | numAlloc = 0; |
| 172 | num = 0; |
| 173 | return arr; |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * \brief Increase the vector size by one. |
no outgoing calls
no test coverage detected