fixed-containers
fixed-containers copied to clipboard
C++ Fixed Containers
Hello @alexkaratarakis, I am trying to use FixedMap for c++ 14. I am facing some issue in std::concepts ,is there any way to replace std::concepts. Or else how to migrate...
Also rename `emplace_move_backward` to `uninitialized_relocate_backward`, introduce (forward) `uninitialized_relocate`, and complete the circle by resuming the use of `uninitialized_relocate` in `erase`.
Introduce a OptionalRef which is intended to be similar to std::optional without the necessary layer of indirection when accessing values Plan is to be identical to std::optional, but with assignment...
Instead of iterating over the linked list (also requires hash lookups) and erasing one by one, just reset the backing linked list and value storage, then 0 out the bucket...
should we make `fixed_containers::reflection` be based on `boost::reflection`. boost's version requires aggregate types, whereas fixed_container's version requires constexpr default constructible. or do we not want fixed containers to depend on...
This adds a new set of tests tagged "benchmark" in bazel, which are filtered out of the default `test_suite` target. This means that they will only be built/run manually.