emplace.pass.cpp revision 73d21a4f0774d3fadab98e690619a359cfb160a3
1//===----------------------------------------------------------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <unordered_map>
11
12// template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
13//           class Alloc = allocator<pair<const Key, T>>>
14// class unordered_map
15
16// template <class... Args>
17//     pair<iterator, bool> emplace(Args&&... args);
18
19#include <unordered_map>
20#include <cassert>
21
22#include "../../../Emplaceable.h"
23
24int main()
25{
26#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
27    {
28        typedef std::unordered_map<int, Emplaceable> C;
29        typedef std::pair<C::iterator, bool> R;
30        C c;
31        R r = c.emplace(3);
32        assert(r.second);
33        assert(c.size() == 1);
34        assert(r.first->first == 3);
35        assert(r.first->second == Emplaceable());
36
37        r = c.emplace(std::pair<const int, Emplaceable>(4, Emplaceable(5, 6)));
38        assert(r.second);
39        assert(c.size() == 2);
40        assert(r.first->first == 4);
41        assert(r.first->second == Emplaceable(5, 6));
42
43        r = c.emplace(5, 6, 7);
44        assert(r.second);
45        assert(c.size() == 3);
46        assert(r.first->first == 5);
47        assert(r.first->second == Emplaceable(6, 7));
48    }
49#endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
50}
51