MCPcopy Create free account
hub / github.com/dhbloo/rapfi / coordToHex

Function coordToHex

Rapfi/database/dbtypes.cpp:28–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26namespace {
27
28constexpr char coordToHex(int coord)
29{
30 return coord < 10 ? '0' + coord : 'A' + coord - 10;
31}
32constexpr int hexToCoord(char hex)
33{
34 return hex <= '9' ? hex - '0' : hex - 'A' + 10;

Callers 1

setBoardTextMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected