Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
26
namespace {
27
28
constexpr char coordToHex(int coord)
29
{
30
return coord < 10 ?
'0'
+ coord :
'A'
+ coord - 10;
31
}
32
constexpr int hexToCoord(char hex)
33
{
34
return hex <=
'9'
? hex -
'0'
: hex -
'A'
+ 10;
Callers
1
setBoardText
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected