| 625 | } |
| 626 | |
| 627 | String String::joinWithoutEmptyParts(const ArrayView<const StringView> strings) const { |
| 628 | return StringView{*this}.joinWithoutEmptyParts(strings); |
| 629 | } |
| 630 | |
| 631 | String String::joinWithoutEmptyParts(const std::initializer_list<StringView> strings) const { |
| 632 | // Doing it this way instead of calling directly into StringView to have the above overload implicitly covered |