-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarty_relops_impl.h
33 lines (32 loc) · 1.9 KB
/
marty_relops_impl.h
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
#pragma once
#define MARTY_IMPLEMENT_RELATIONAL_OPERATORS_BY_COMPARE( typeT2 )\
\
bool operator<( const typeT2 v2 ) const \
{ \
return compare(v2)<0; \
} \
\
bool operator<=( const typeT2 v2 ) const \
{ \
return compare(v2)<=0; \
} \
\
bool operator>( const typeT2 v2 ) const \
{ \
return compare(v2)>0; \
} \
\
bool operator>=( const typeT2 v2 ) const \
{ \
return compare(v2)>=0; \
} \
\
bool operator==( const typeT2 v2 ) const \
{ \
return compare(v2)==0; \
} \
\
bool operator!=( const typeT2 v2 ) const \
{ \
return compare(v2)!=0; \
}