//===----------------------------------------------------------------------===// // // 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 // // template , class Pred = equal_to, // class Alloc = allocator> // class unordered_set // template // pair emplace(Args&&... args); #include #include #include "../../Emplaceable.h" #include "MoveOnly.h" #include "min_allocator.h" int main(int, char**) { { typedef std::unordered_set C; typedef std::pair R; C c; R r = c.emplace(); assert(c.size() == 1); assert(*r.first == Emplaceable()); assert(r.second); r = c.emplace(Emplaceable(5, 6)); assert(c.size() == 2); assert(*r.first == Emplaceable(5, 6)); assert(r.second); r = c.emplace(5, 6); assert(c.size() == 2); assert(*r.first == Emplaceable(5, 6)); assert(!r.second); } { typedef std:: unordered_set, std::equal_to, min_allocator> C; typedef std::pair R; C c; R r = c.emplace(); assert(c.size() == 1); assert(*r.first == Emplaceable()); assert(r.second); r = c.emplace(Emplaceable(5, 6)); assert(c.size() == 2); assert(*r.first == Emplaceable(5, 6)); assert(r.second); r = c.emplace(5, 6); assert(c.size() == 2); assert(*r.first == Emplaceable(5, 6)); assert(!r.second); } { // We're unwrapping pairs for `unordered_{,multi}map`. Make sure we're not trying to do that for unordered_set. struct PairHasher { size_t operator()(const std::pair& val) const { return std::hash()(val.first); } }; using Set = std::unordered_set, PairHasher>; Set set; auto res = set.emplace(std::pair(2, 4)); assert(std::get<1>(res)); assert(set.begin() == std::get<0>(res)); } return 0; }