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