MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / operator==

Method operator==

gui/qt/keypad/keycode.h:17–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15 unsigned char col() const { return (mCode >> 0) & 7; }
16
17 bool operator==(KeyCode other) const { return code() == other.code(); }
18 bool operator!=(KeyCode other) const { return !(*this == other); }
19 friend uint qHash(KeyCode code, uint seed = 0) {
20 return qHash(code.code(), seed);

Callers

nothing calls this directly

Calls 1

codeMethod · 0.80

Tested by

no test coverage detected