| 391 | void clear() noexcept { this->Values.clear(); } |
| 392 | |
| 393 | iterator insert(const_iterator pos, cm::string_view value, |
| 394 | ExpandElements expandElements = ExpandElements::Yes, |
| 395 | EmptyElements emptyElements = EmptyElements::No) |
| 396 | { |
| 397 | return cmList::Insert(this->Values, pos, std::string(value), |
| 398 | expandElements, emptyElements); |
| 399 | } |
| 400 | iterator insert(const_iterator pos, cm::string_view value, |
| 401 | EmptyElements emptyElements) |
| 402 | { |