blob: 3a821c5964ef939bd8d1fce08a18b6d3aefcb96c [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// iterator emplace_hint(const_iterator p, 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 C::iterator R;
30 C c;
31 C::const_iterator e = c.end();
32 R r = c.emplace_hint(e, 3);
33 assert(c.size() == 1);
34 assert(r->first == 3);
35 assert(r->second == Emplaceable());
36
37 r = c.emplace_hint(e, std::pair<const int, Emplaceable>(4, Emplaceable(5, 6)));
38 assert(c.size() == 2);
39 assert(r->first == 4);
40 assert(r->second == Emplaceable(5, 6));
41
42 r = c.emplace_hint(e, 5, 6, 7);
43 assert(c.size() == 3);
44 assert(r->first == 5);
45 assert(r->second == Emplaceable(6, 7));
46 }
Howard Hinnant73d21a42010-09-04 23:28:19 +000047#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000048}