//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template , class Pred = equal_to, // class Alloc = allocator> // class unordered_set // iterator insert(const_iterator p, value_type&& x); #if _LIBCPP_DEBUG >= 1 #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0)) #endif #include #include #include "../../MoveOnly.h" #include "min_allocator.h" int main() { { typedef std::unordered_set C; typedef C::iterator R; typedef double P; C c; C::const_iterator e = c.end(); R r = c.insert(e, P(3.5)); assert(c.size() == 1); assert(*r == 3.5); r = c.insert(r, P(3.5)); assert(c.size() == 1); assert(*r == 3.5); r = c.insert(e, P(4.5)); assert(c.size() == 2); assert(*r == 4.5); r = c.insert(e, P(5.5)); assert(c.size() == 3); assert(*r == 5.5); } #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES { typedef std::unordered_set C; typedef C::iterator R; typedef MoveOnly P; C c; C::const_iterator e = c.end(); R r = c.insert(e, P(3)); assert(c.size() == 1); assert(*r == 3); r = c.insert(r, P(3)); assert(c.size() == 1); assert(*r == 3); r = c.insert(e, P(4)); assert(c.size() == 2); assert(*r == 4); r = c.insert(e, P(5)); assert(c.size() == 3); assert(*r == 5); } #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES #if __cplusplus >= 201103L { typedef std::unordered_set, std::equal_to, min_allocator> C; typedef C::iterator R; typedef double P; C c; C::const_iterator e = c.end(); R r = c.insert(e, P(3.5)); assert(c.size() == 1); assert(*r == 3.5); r = c.insert(r, P(3.5)); assert(c.size() == 1); assert(*r == 3.5); r = c.insert(e, P(4.5)); assert(c.size() == 2); assert(*r == 4.5); r = c.insert(e, P(5.5)); assert(c.size() == 3); assert(*r == 5.5); } #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES { typedef std::unordered_set, std::equal_to, min_allocator> C; typedef C::iterator R; typedef MoveOnly P; C c; C::const_iterator e = c.end(); R r = c.insert(e, P(3)); assert(c.size() == 1); assert(*r == 3); r = c.insert(r, P(3)); assert(c.size() == 1); assert(*r == 3); r = c.insert(e, P(4)); assert(c.size() == 2); assert(*r == 4); r = c.insert(e, P(5)); assert(c.size() == 3); assert(*r == 5); } #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES #if _LIBCPP_DEBUG >= 1 { typedef std::unordered_set C; typedef C::iterator R; typedef C::value_type P; C c; C c2; C::const_iterator e = c2.end(); R r = c.insert(e, P(3.5)); assert(false); } #endif #endif }