blob: ab9b4b60b79e44a6606f1f4a7cb3d06291a45c0b [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
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{
Howard Hinnant73d21a42010-09-04 23:28:19 +000026#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000027 {
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 }
Howard Hinnant73d21a42010-09-04 23:28:19 +000049#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000050}