| 78 | void turnBack() noexcept { d = back(); } |
| 79 | void turnLeft() noexcept { d = left(); } |
| 80 | void turnRight() noexcept { d = right(); } |
| 81 | void turn(Direction dir) noexcept { d = direction(dir); } |
| 82 | |
| 83 | Value edgeAt(POINT d) const noexcept |
no outgoing calls
no test coverage detected