forked from rethinkdb/rethinkdb_rebirth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstl_utils.hpp
61 lines (45 loc) · 1.68 KB
/
stl_utils.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright 2010-2014 RethinkDB, all rights reserved.
#ifndef STL_UTILS_HPP_
#define STL_UTILS_HPP_
#include <deque>
#include <map>
#include <set>
#include <string>
#include <utility>
#include <vector>
#include "errors.hpp"
class printf_buffer_t;
/* stl utils make some stl structures nicer to work with */
template <class K, class V>
std::set<K> keys(const std::map<K, V> &);
template <class container_t>
bool std_contains(const container_t &, const typename container_t::key_type &);
template <class K, class V, class C>
void debug_print(printf_buffer_t *buf, const std::map<K, V, C> &map);
template <class T>
void debug_print(printf_buffer_t *buf, const std::set<T> &map);
template <class T>
void debug_print(printf_buffer_t *buf, const std::vector<T> &vec);
template <class T>
void debug_print(printf_buffer_t *buf, const std::deque<T> &vec);
template <class T, class U>
void debug_print(printf_buffer_t *buf, const std::pair<T, U> &p);
// We pass the first argument explicitly so that the compiler can infer the template parameters.
template <class T, class... Args>
std::vector<T> make_vector(const T &arg, Args... args) {
std::vector<T> ret;
ret.reserve(sizeof...(args) + 1);
ret.emplace_back(std::move(arg));
UNUSED int dummy[] = { 0, (ret.emplace_back(std::move(args)), 1)... };
return ret;
}
template <class K, class V, class... Args>
std::map<K, V> make_map(const std::pair<K, V> &arg, Args... args) {
std::map<K, V> ret;
ret.emplace(std::move(arg));
UNUSED int dummy[] = { (ret.emplace(std::move(args)), 1)... };
return ret;
}
std::vector<std::string> split_string(const std::string &s, char sep);
#include "stl_utils.tcc"
#endif /* STL_UTILS_HPP_ */