| 141 | } |
| 142 | |
| 143 | void StringArray::insert (int index, String newString) |
| 144 | { |
| 145 | // NB: the local temp copy is to avoid a dangling pointer if the |
| 146 | // argument being passed-in is a reference into this array. |
| 147 | strings.insert (index, std::move (newString)); |
| 148 | } |
| 149 | |
| 150 | bool StringArray::addIfNotAlreadyThere (const String& newString, bool ignoreCase) |
| 151 | { |
no test coverage detected