fixed-containers
fixed-containers copied to clipboard
C++ Fixed Containers
Hello, I was experimenting with `bit_set` in my own fork, replaced the internal `std::array` members with `bit_set`. _(Right know I'm using [`bit_set`](https://github.com/rhalbersma/bit_set), I needed a more "modern" `bit_set` with fixed...
`EnumSet` currently uses `std::array` as the backing type because `std::bitset` is not sufficiently constexpr. This PR introduces `FixedBitSet` as a possible solution. The overall advantage is that `EnumSet` can then...
- Final: https://github.com/teslamotors/fixed-containers/pull/155 - Experiments: https://github.com/teslamotors/fixed-containers/pull/164