| 616 | } |
| 617 | |
| 618 | String String::join(const ArrayView<const StringView> strings) const { |
| 619 | return StringView{*this}.join(strings); |
| 620 | } |
| 621 | |
| 622 | String String::join(const std::initializer_list<StringView> strings) const { |
| 623 | // Doing it this way instead of calling directly into StringView to have the above overload implicitly covered |
no test coverage detected