--------------------------------------------------------------------------------------------------
| 158 | |
| 159 | //-------------------------------------------------------------------------------------------------- |
| 160 | std::vector<std::string_view> splitStringView(std::string_view input, |
| 161 | std::string_view separators, |
| 162 | WhitespaceHandling whitespace, |
| 163 | SplitResult result_type) |
| 164 | { |
| 165 | if (separators.size() == 1) |
| 166 | { |
| 167 | return splitStringT<std::string_view, std::string_view, char>( |
| 168 | input, separators[0], whitespace, result_type); |
| 169 | } |
| 170 | |
| 171 | return splitStringT<std::string_view, std::string_view, std::string_view>( |
| 172 | input, separators, whitespace, result_type); |
| 173 | } |
| 174 | |
| 175 | //-------------------------------------------------------------------------------------------------- |
| 176 | std::vector<std::u16string_view> splitStringView(std::u16string_view input, |
no test coverage detected