| 11 | |
| 12 | bool valid() const { return mCode >> 6 == 0; } |
| 13 | unsigned char code() const { return mCode; } |
| 14 | unsigned char row() const { return (mCode >> 3) & 7; } |
| 15 | unsigned char col() const { return (mCode >> 0) & 7; } |
| 16 |
no outgoing calls
no test coverage detected