fixed-containers icon indicating copy to clipboard operation
fixed-containers copied to clipboard

C++ Fixed Containers

Results 24 fixed-containers issues
Sort by recently updated
recently updated
newest added

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