-
Notifications
You must be signed in to change notification settings - Fork 0
/
tupleFunctions.hpp
69 lines (58 loc) · 1.07 KB
/
tupleFunctions.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
62
63
64
65
66
67
68
69
#ifndef tupleFunctions_hpp
#define tupleFunctions_hpp
namespace SOAX {
// Operation on Tuple functions -------------------------------------------------------------------------
struct Resize
{
template<class T>
static void doIt(T& t, int particleNumber) {
t->resize(particleNumber);
}
};
struct Reserve
{
template<class T>
static void doIt(T& t, int particleNumber) {
t->reserve(particleNumber);
}
};
struct Shrink_to_fit
{
template<class T>
static void doIt(T& t) {
t->shrink_to_fit();
}
};
struct Clear
{
template<class T>
static void doIt(T& t) {
t->clear();
}
};
struct Erase
{
template<class T>
static void doIt(T& t, int i) {
t->operator[](i) = t->operator[](t->size()-1);
t->pop_back();
}
};
struct IncreaseNumber
{
template<class T>
static void doIt(T& t, int i) {
t->resize(t->size()+i);
// t->increaseNumber(i);
}
};
struct SetToValue
{
template<class T, class Type>
static void doIt(T& t, Type value) {
for(int i=0;i<t->size();i++)
t->operator[](i) = value;
}
};
} // namespace SOAX
#endif