Lancern's Treasure Chest
08:00 · Aug 14, 2023 · Mon
Some C++20 ranges aren’t const-iterable
via
Arthur O’Dwyer
Arthur O’Dwyer
Some C++20 ranges aren’t const-iterable
Via StackOverflow:
Newcomers to C++20 Ranges are often surprised that some ranges cannot be “const-iterated.”
But it’s true!
template<std::ranges::range R>
void foreach(const R& rg) { // Wrong!
for (auto&& elt : rg) { }
}
Home
Powered by
BroadcastChannel
&
Sepia