gbdev/rgbds

Abbreviate `s.begin(), s.end()` with a `RANGE(x)` macro

Rangi42 opened this issue · 0 comments

Not everything that we support allows std::ranges, and in the meantime we have a lot of s.begin(), s.end() arguments to things. A #define RANGE(s) std::begin(s), std::end(s) macro would shorten them.