-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelops.cxx
More file actions
103 lines (71 loc) · 1.56 KB
/
relops.cxx
File metadata and controls
103 lines (71 loc) · 1.56 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#ifndef RELOPS_DISABLE_RELOPS
inline bool operator>(const type& left, const type& right)
{
return right < left;
}
inline bool operator<=(const type& left, const type& right)
{
return !(right < left);
}
inline bool operator>=(const type& left, const type& right)
{
return !(left < right);
}
inline bool operator!=(const type& left, const type& right)
{
return !(left == right);
}
#endif
#undef RELOPS_DISABLE_RELOPS
#ifndef RELOPS_DISABLE_ASSIGNPLUS
inline type operator+=(type& left, const type& right)
{
left = left + right;
return left;
}
#endif
#undef RELOPS_DISABLE_ASSIGNPLUS
#ifndef RELOPS_DISABLE_ASSIGNMINUS
inline type operator-=(type& left, const type& right)
{
left = left - right;
return left;
}
#endif
#undef RELOPS_DISABLE_ASSIGNMINUS
#ifndef RELOPS_DISABLE_ASSIGNMULT
inline type operator*=(type& left, const type& right)
{
left = left * right;
return left;
}
#endif
#undef RELOPS_DISABLE_ASSIGNMULT
#ifndef RELOPS_DISABLE_ASSIGNDIV
inline type operator/=(type& left, const type& right)
{
left = left / right;
return left;
}
#endif
#undef RELOPS_DISABLE_ASSIGNDIV
#ifndef RELOPS_DISABLE_ASSIGNMODULO
inline type operator%=(type& left, const type& right)
{
left = left % right;
return left;
}
#endif
#undef RELOPS_DISABLE_ASSIGNMODULO
#ifndef RELOPS_DISABLE_TOSTRING
#include <sstream>
#include <string>
inline std::string to_string(const type& value)
{
std::ostringstream out;
out << value;
return out.str();
}
#endif
#undef RELOPS_DISABLE_TOSTRING
#undef type