On Wed, 16 Oct 2024, Patrick Palka wrote:
> On Mon, 30 Sep 2024, Patrick Palka wrote:
>
> > This implements the C++23 container adaptors std::flat_map and
> > std::flat_multimap from P0429R9. The implementation is shared
> > as much as possible between the two adaptors via a common base
> > clas
On Mon, 30 Sep 2024, Patrick Palka wrote:
> This implements the C++23 container adaptors std::flat_map and
> std::flat_multimap from P0429R9. The implementation is shared
> as much as possible between the two adaptors via a common base
> class that's parameterized according to key uniqueness.
>
This implements the C++23 container adaptors std::flat_map and
std::flat_multimap from P0429R9. The implementation is shared
as much as possible between the two adaptors via a common base
class that's parameterized according to key uniqueness.
The main known issues are:
* the range insert() ov