-
Notifications
You must be signed in to change notification settings - Fork 0
/
Map.cpp
87 lines (73 loc) · 1.47 KB
/
Map.cpp
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
87
#include "utils.h"
namespace ylib {
template<class T>
Map<T>::Map() {
}
template<class T>
Map<T>::Map(const Map<T>& m) {
*this = m;
}
template<class T>
Map<T>::~Map() {
clear();
}
template<class T>
Map<T>& Map<T>::clear() {
m_keys.clear();
m_values.clear();
return *this;
}
template<class T>
Map<T>& Map<T>::add(String& key, T& value) {
m_keys.add(key);
m_values.add(value);
return *this;
}
template<class T>
Map<T>& Map<T>::add(const char *key, T& value) {
if (key != nullptr) {
String _key(key);
return add(_key, value);
}
return *this;
}
template<class T>
T* const Map<T>::getValue(String& key) const {
long i = m_keys.find(key);
if (i == -1) {
return nullptr;
}
return m_values[i];
}
template<class T>
T* const Map<T>::getValue(const char* key) const {
if (key == nullptr) {
return nullptr;
}
return getValue(String(key));
}
template<class T>
Map<T>& Map<T>::removeKey(String& key) {
long i = m_keys.find(key);
if (i != -1) {
m_keys.remove(i);
m_values.remove(i);
}
return *this;
}
template<class T>
Map<T>& Map<T>::removeKey(const char* key) {
if (key != nullptr) {
String _key(key);
return removeKey(_key);
}
return *this;
}
template<class T>
Map<T>& Map<T>::operator=(Map<T> const& value) {
clear();
m_keys = value.getKeys();
m_values = value.getValues();
return *this;
}
}