Searched defs:SplitIterator (Results 1 – 1 of 1) sorted by relevance
102 struct SplitIterator { struct103 using value_type = std::string_view;104 using reference = value_type&;105 using pointer = value_type*;106 using iterator_category = std::forward_iterator_tag;107 using difference_type = std::ptrdiff_t; // required by concept, but its meaningless.109 constexpr bool operator==(const SplitIterator& other) const { in operator ==()122 constexpr bool operator!=(const SplitIterator& other) const { in operator !=()126 constexpr std::string_view& operator*() { in operator *()131 constexpr std::string_view* operator->() { in operator ->()[all …]