5 ms·
> std::string_view or std::span should be used instead That is for when the owner is a std::string or an owning range respectively. But a raw pointer does stil
by arcadialeak 4mo ago
> std::string_view or std::span should be used instead
That is for when the owner is a std::string or an owning range respectively. But a raw pointer does still make sense as a non-owning view over a single element, doesn't it? I'm new to C++ so I might be wrong.
- cocoto 4mo agoNon-owning view over a single element should simply be a reference, you don’t care where this element is located.
- 1718627440 4mo agoThat won't work with NULL.