| 24 | template <typename IsDelimiterType> class Tokenizer { |
| 25 | public: |
| 26 | Tokenizer(const std::wstring_view &target, const IsDelimiterType &is_delimiter, bool split_camel_case) |
| 27 | : m_target(target), m_is_delimiter(is_delimiter), m_split_camel_case(split_camel_case) { |
| 28 | } |
| 29 | |
| 30 | std::vector<std::wstring_view> get_all_tokens() const { |
| 31 | int token_begin = 0, token_end = -1; |
nothing calls this directly
no outgoing calls
no test coverage detected