Say I have a
enum class foo : std::uint32_t { a = 4711, b = 815, ... };
with n enumeration constants. Assume that th
n