qxLib
string_view_view.h
Go to the documentation of this file.
1 /**
2 
3  @file string_view_view.h
4  @author Khrapov
5  @date 24.10.2023
6  @copyright © Nick Khrapov, 2023. All right reserved.
7 
8 **/
9 #pragma once
10 
12 
13 namespace qx
14 {
15 
16 /**
17 
18  @class string_view_view
19  @brief Class that allows to iterate over a string view using a delimiter character
20  @tparam char_t - char type
21  @author Khrapov
22  @date 24.10.2023
23 
24 **/
25 template<class char_t>
26 class string_view_view : public std::ranges::view_interface<string_view_view<char_t>>
27 {
28 public:
29  /**
30  @brief string_view_view object constructor
31  @param svFull - string to iterate
32  @param chDelimiter - delimiter character
33  @param eDelimiterInclusionFlags - flags that determine whether to include delimiters in parts when iterating
34  **/
35  constexpr string_view_view(
36  basic_string_view<char_t> svFull,
37  char_t chDelimiter,
38  flags<delimiter_inclusion_flags> eDelimiterInclusionFlags = delimiter_inclusion_flags::none) noexcept;
39 
40  /**
41  @brief Return iterator to beginning
42  @retval - iterator to beginning
43  **/
44  string_view_iterator<char_t> begin() const noexcept;
45 
46  /**
47  @brief Return iterator to end
48  @retval - iterator to end
49  **/
50  string_view_iterator<char_t> end() const noexcept;
51 
52 private:
53  basic_string_view<char_t> m_svFull;
54  char_t m_chDelimiter;
55  flags<delimiter_inclusion_flags> m_eDelimiterInclusionFlags = delimiter_inclusion_flags::none;
56 };
57 
58 } // namespace qx
59 
Iterator class that allows to iterate over a string view using a delimiter character.
Class that allows to iterate over a string view using a delimiter character.
string_view_iterator< char_t > end() const noexcept
Return iterator to end.
constexpr string_view_view(basic_string_view< char_t > svFull, char_t chDelimiter, flags< delimiter_inclusion_flags > eDelimiterInclusionFlags=delimiter_inclusion_flags::none) noexcept
string_view_view object constructor
string_view_iterator< char_t > begin() const noexcept
Return iterator to beginning.