//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14, c++17, c++20 // // class flat_multimap // template // iterator emplace_hint(const_iterator position, Args&&... args); #include #include #include #include #include #include "MinSequenceContainer.h" #include "test_macros.h" #include "../../../Emplaceable.h" #include "DefaultOnly.h" #include "min_allocator.h" #include "../helpers.h" #if defined(_LIBCPP_VERSION) // spec only specifies `emplace(Args&&...)` is_constructible_v, Args...> is true. // nothing mentioned for emplace_hint template concept CanEmplaceHint = requires(M m, typename M::const_iterator i, Args&&... args) { m.emplace_hint(i, std::forward(args)...); }; using Map = std::flat_multimap; static_assert(CanEmplaceHint); static_assert(CanEmplaceHint); static_assert(CanEmplaceHint, std::tuple>); static_assert(!CanEmplaceHint); static_assert(!CanEmplaceHint); #endif template constexpr void test() { using Key = typename KeyContainer::value_type; using Value = typename ValueContainer::value_type; using M = std::flat_multimap, KeyContainer, ValueContainer>; using R = M::iterator; { // was empty M m; std::same_as decltype(auto) r = m.emplace_hint(m.end(), typename M::value_type(2, 3.5)); assert(r == m.begin()); assert(m.size() == 1); assert(m.begin()->first == 2); assert(m.begin()->second == 3.5); } { // hint correct and no duplicates M m = {{0, 0.0}, {1, 1.0}, {3, 3.0}}; auto it = m.begin() + 2; std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); assert(r == m.begin() + 2); assert(m.size() == 4); assert(r->first == 2); assert(r->second == 2.0); } { // hint correct and at the begin M m = {{3, 3.0}, {4, 4.0}}; auto it = m.begin(); std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); assert(r == m.begin()); assert(m.size() == 3); assert(r->first == 2); assert(r->second == 2.0); } { // hint correct and at the end M m = {{0, 0.0}, {1, 1.0}}; auto it = m.end(); std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); assert(r == m.begin() + 2); assert(m.size() == 3); assert(r->first == 2); assert(r->second == 2.0); } { // hint correct and at first duplicate M m = {{0, 0.0}, {1, 1.0}, {2, 1.9}, {2, 2.1}, {3, 3.0}}; auto it = m.begin() + 2; std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); assert(r == m.begin() + 2); assert(m.size() == 6); assert(r->first == 2); assert(r->second == 2.0); assert(std::next(r)->first == 2); assert(std::next(r)->second == 1.9); } { // hint correct and in-between duplicates M m = {{0, 0.0}, {1, 1.0}, {2, 1.8}, {2, 1.9}, {2, 2.1}, {3, 3.0}}; auto it = m.begin() + 4; std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); assert(r == m.begin() + 4); assert(m.size() == 7); assert(r->first == 2); assert(r->second == 2.0); assert(std::next(r)->first == 2); assert(std::next(r)->second == 2.1 || std::next(r)->second == 1.9); } { // hint correct and after duplicates M m = {{0, 0.0}, {1, 1.0}, {2, 1.8}, {2, 1.9}, {2, 2.1}, {3, 3.0}}; auto it = m.begin() + 5; std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); assert(r == m.begin() + 5); assert(m.size() == 7); assert(r->first == 2); assert(r->second == 2.0); assert(std::next(r)->first == 3); assert(std::next(r)->second == 3.0); } { // hint incorrect and no duplicates M m = {{0, 0.0}, {1, 1.0}, {3, 3.0}}; auto it = m.begin() + 1; std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); assert(r == m.begin() + 2); assert(m.size() == 4); assert(r->first == 2); assert(r->second == 2.0); } { // hint incorrect and at the begin M m = {{0, 0.0}, {1, 1.0}}; auto it = m.begin(); std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); assert(r == m.begin() + 2); assert(m.size() == 3); assert(r->first == 2); assert(r->second == 2.0); } { // hint incorrect and at the end M m = {{3, 3.0}, {4, 4.0}}; auto it = m.end(); std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); assert(r == m.begin()); assert(m.size() == 3); assert(r->first == 2); assert(r->second == 2.0); } { // hint incorrect and before the first duplicate M m = {{0, 0.0}, {1, 1.0}, {2, 1.8}, {2, 1.9}, {2, 2.1}, {3, 3.0}}; auto it = m.begin(); std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); // the result is as left as possible assert(r == m.begin() + 2); assert(m.size() == 7); assert(r->first == 2); assert(r->second == 2.0); assert(std::next(r)->first == 2); assert(std::next(r)->second == 1.8); } { // hint incorrect and after the last duplicate M m = {{0, 0.0}, {1, 1.0}, {2, 1.8}, {2, 1.9}, {2, 2.1}, {3, 3.0}, {4, 4.0}}; auto it = m.begin() + 6; std::same_as decltype(auto) r = m.emplace_hint(it, typename M::value_type(2, 2.0)); // the result is as right as possible assert(r == m.begin() + 5); assert(m.size() == 8); assert(r->first == 2); assert(r->second == 2.0); assert(std::next(r)->first == 3); assert(std::next(r)->second == 3.0); } } template constexpr void test_emplaceable() { using M = std::flat_multimap, KeyContainer, ValueContainer>; using R = M::iterator; M m; ASSERT_SAME_TYPE(decltype(m.emplace_hint(m.cbegin())), R); R r = m.emplace_hint(m.end(), std::piecewise_construct, std::forward_as_tuple(2), std::forward_as_tuple()); assert(r == m.begin()); assert(m.size() == 1); assert(r->first == 2); assert(r->second == Emplaceable()); r = m.emplace_hint(m.end(), std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple(2, 3.5)); assert(r == m.begin()); assert(m.size() == 2); assert(r->first == 1); assert(r->second == Emplaceable(2, 3.5)); r = m.emplace_hint(m.end(), std::piecewise_construct, std::forward_as_tuple(1), std::forward_as_tuple(2, 3.6)); assert(r == m.begin() + 1); assert(m.size() == 3); assert(r->first == 1); assert(r->second == Emplaceable(2, 3.6)); } constexpr bool test() { test, std::vector>(); #ifndef __cpp_lib_constexpr_deque if (!TEST_IS_CONSTANT_EVALUATED) #endif test, std::vector>(); test, MinSequenceContainer>(); test>, std::vector>>(); test_emplaceable, std::vector>(); #ifndef __cpp_lib_constexpr_deque if (!TEST_IS_CONSTANT_EVALUATED) #endif test_emplaceable, std::vector>(); test_emplaceable, MinSequenceContainer>(); test_emplaceable>, std::vector>>(); if (!TEST_IS_CONSTANT_EVALUATED) { auto emplace_func = [](auto& m, auto key_arg, auto value_arg) { m.emplace_hint(m.begin(), std::piecewise_construct, std::tuple(key_arg), std::tuple(value_arg)); }; test_emplace_exception_guarantee(emplace_func); } return true; } int main(int, char**) { test(); #if TEST_STD_VER >= 26 static_assert(test()); #endif return 0; }