Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing C++26 insert_or_assign overloads for map and flat_map #283

Open
igaztanaga opened this issue Jun 27, 2024 · 0 comments
Open

Comments

@igaztanaga
Copy link
Member

In C++26:

template<class K, class M>
pair<iterator, bool> insert_or_assign(K&& k, M&& obj);

and

template<class K, class M>
iterator insert_or_assign(const_iterator hint, K&& k, M&& obj);

where added under __cpp_lib_associative_heterogeneous_insertion >= 202311L

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant