|
|
|
@ -10,18 +10,43 @@ typedef union Key_ {
|
|
|
|
|
};
|
|
|
|
|
uint16_t raw;
|
|
|
|
|
|
|
|
|
|
inline bool operator==(uint16_t rhs) { return this->raw == rhs; };
|
|
|
|
|
inline bool operator==(const Key_ rhs) { return this->raw == rhs.raw; };
|
|
|
|
|
inline Key_& operator=(uint16_t raw) { this->raw = raw; return *this; };
|
|
|
|
|
inline bool operator!=(const Key_& rhs) { return !(*this == rhs); };
|
|
|
|
|
inline bool operator>=(uint16_t raw) { return this->raw >= raw; };
|
|
|
|
|
inline bool operator<=(uint16_t raw) { return this->raw <= raw; };
|
|
|
|
|
inline bool operator>(uint16_t raw) { return this->raw > raw; };
|
|
|
|
|
inline bool operator<(uint16_t raw) { return this->raw < raw; };
|
|
|
|
|
inline bool operator>=(const Key_& other) { return this->raw >= other.raw; };
|
|
|
|
|
inline bool operator<=(const Key_& other) { return this->raw <= other.raw; };
|
|
|
|
|
inline bool operator>(const Key_& other) { return this->raw > other.raw; };
|
|
|
|
|
inline bool operator<(const Key_& other) { return this->raw < other.raw; };
|
|
|
|
|
inline bool operator==(uint16_t rhs) {
|
|
|
|
|
return this->raw == rhs;
|
|
|
|
|
};
|
|
|
|
|
inline bool operator==(const Key_ rhs) {
|
|
|
|
|
return this->raw == rhs.raw;
|
|
|
|
|
};
|
|
|
|
|
inline Key_& operator=(uint16_t raw) {
|
|
|
|
|
this->raw = raw;
|
|
|
|
|
return *this;
|
|
|
|
|
};
|
|
|
|
|
inline bool operator!=(const Key_& rhs) {
|
|
|
|
|
return !(*this == rhs);
|
|
|
|
|
};
|
|
|
|
|
inline bool operator>=(uint16_t raw) {
|
|
|
|
|
return this->raw >= raw;
|
|
|
|
|
};
|
|
|
|
|
inline bool operator<=(uint16_t raw) {
|
|
|
|
|
return this->raw <= raw;
|
|
|
|
|
};
|
|
|
|
|
inline bool operator>(uint16_t raw) {
|
|
|
|
|
return this->raw > raw;
|
|
|
|
|
};
|
|
|
|
|
inline bool operator<(uint16_t raw) {
|
|
|
|
|
return this->raw < raw;
|
|
|
|
|
};
|
|
|
|
|
inline bool operator>=(const Key_& other) {
|
|
|
|
|
return this->raw >= other.raw;
|
|
|
|
|
};
|
|
|
|
|
inline bool operator<=(const Key_& other) {
|
|
|
|
|
return this->raw <= other.raw;
|
|
|
|
|
};
|
|
|
|
|
inline bool operator>(const Key_& other) {
|
|
|
|
|
return this->raw > other.raw;
|
|
|
|
|
};
|
|
|
|
|
inline bool operator<(const Key_& other) {
|
|
|
|
|
return this->raw < other.raw;
|
|
|
|
|
};
|
|
|
|
|
} Key;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|