@ -26,41 +26,41 @@ union Key {
} ;
} ;
uint16_t raw ;
uint16_t raw ;
inline bool operator = = ( uint16_t rhs ) {
constexpr inline bool operator = = ( uint16_t rhs ) const {
return this - > raw = = rhs ;
return this - > raw = = rhs ;
}
}
inline bool operator = = ( const Key rhs ) {
constexpr inline bool operator = = ( const Key rhs ) const {
return this - > raw = = rhs . raw ;
return this - > raw = = rhs . raw ;
}
}
inline Key & operator = ( uint16_t raw ) {
inline Key & operator = ( uint16_t raw ) {
this - > raw = raw ;
this - > raw = raw ;
return * this ;
return * this ;
}
}
inline bool operator ! = ( const Key & rhs ) {
constexpr inline bool operator ! = ( const Key & rhs ) const {
return ! ( * this = = rhs ) ;
return ! ( * this = = rhs ) ;
}
}
inline bool operator > = ( uint16_t raw ) {
constexpr inline bool operator > = ( uint16_t raw ) const {
return this - > raw > = raw ;
return this - > raw > = raw ;
}
}
inline bool operator < = ( uint16_t raw ) {
constexpr inline bool operator < = ( uint16_t raw ) const {
return this - > raw < = raw ;
return this - > raw < = raw ;
}
}
inline bool operator > ( uint16_t raw ) {
constexpr inline bool operator > ( uint16_t raw ) const {
return this - > raw > raw ;
return this - > raw > raw ;
}
}
inline bool operator < ( uint16_t raw ) {
constexpr inline bool operator < ( uint16_t raw ) const {
return this - > raw < raw ;
return this - > raw < raw ;
}
}
inline bool operator > = ( const Key & other ) {
constexpr inline bool operator > = ( const Key & other ) const {
return this - > raw > = other . raw ;
return this - > raw > = other . raw ;
}
}
inline bool operator < = ( const Key & other ) {
constexpr inline bool operator < = ( const Key & other ) const {
return this - > raw < = other . raw ;
return this - > raw < = other . raw ;
}
}
inline bool operator > ( const Key & other ) {
constexpr inline bool operator > ( const Key & other ) const {
return this - > raw > other . raw ;
return this - > raw > other . raw ;
}
}
inline bool operator < ( const Key & other ) {
constexpr inline bool operator < ( const Key & other ) const {
return this - > raw < other . raw ;
return this - > raw < other . raw ;
}
}
} ;
} ;