Since C++20, it seems that std::ranges:: is capable of almost everything std:: can do (looking at range algorithms).
Is it a good practice to just write namespace ranges = std::ranges;
in the topmost header of one's project ?
For example, a namespace alias is already done for views:
namespace std {
namespace views = ranges::views;
}
EDIT @StoryTeller - Unslander Monica: one single question