| 246 | */ |
| 247 | template <typename Iterator> |
| 248 | void addArray (Iterator&& start, Iterator&& end) |
| 249 | { |
| 250 | ensureStorageAllocated (size() + (int) static_cast<size_t> (end - start)); |
| 251 | |
| 252 | while (start != end) |
| 253 | strings.add (*start++); |
| 254 | } |
| 255 | |
| 256 | /** Merges the strings from another array into this one. |
| 257 | This will not add a string that already exists. |
no test coverage detected