Ubuntu – How to extract std::string_view tokens from std::ranges::lazy_split_view using >= C++23?
In a compile-time parser, I need to extract parts of a std::string_value literal and decode them. A minimal, unfortunately not compiling, example of what I do is: #include <charconv> #include <iostream> #include <optional> #include <ranges> #include <string_view> template <typename X>…