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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/*
* STL Utility Functions
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_STL_UTIL_H__
#define BOTAN_STL_UTIL_H__
#include <map>
namespace Botan {
/*
* Copy-on-Predicate Algorithm
*/
template<typename InputIterator, typename OutputIterator, typename Predicate>
OutputIterator copy_if(InputIterator current, InputIterator end,
OutputIterator dest, Predicate copy_p)
{
while(current != end)
{
if(copy_p(*current))
*dest++ = *current;
++current;
}
return dest;
}
/*
* Searching through a std::map
*/
template<typename K, typename V>
inline V search_map(const std::map<K, V>& mapping,
const K& key,
const V& null_result = V())
{
typename std::map<K, V>::const_iterator i = mapping.find(key);
if(i == mapping.end())
return null_result;
return i->second;
}
template<typename K, typename V, typename R>
inline R search_map(const std::map<K, V>& mapping, const K& key,
const R& null_result, const R& found_result)
{
typename std::map<K, V>::const_iterator i = mapping.find(key);
if(i == mapping.end())
return null_result;
return found_result;
}
/*
* Function adaptor for delete operation
*/
template<class T>
class del_fun : public std::unary_function<T, void>
{
public:
void operator()(T* ptr) { delete ptr; }
};
/*
* Delete the second half of a pair of objects
*/
template<typename Pair>
void delete2nd(Pair& pair)
{
delete pair.second;
}
/*
* Insert a key/value pair into a multimap
*/
template<typename K, typename V>
void multimap_insert(std::multimap<K, V>& multimap,
const K& key, const V& value)
{
multimap.insert(std::make_pair(key, value));
}
}
#endif
|