MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / isHexNum

Function isHexNum

Source/3rdParty/bx/src/string.cpp:57–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55 }
56
57 bool isHexNum(char _ch)
58 {
59 return false
60 || isInRange(toLower(_ch), 'a', 'f')
61 || isNumeric(_ch)
62 ;
63 }
64
65 bool isPrint(char _ch)
66 {

Callers

nothing calls this directly

Calls 3

isInRangeFunction · 0.85
toLowerFunction · 0.85
isNumericFunction · 0.70

Tested by

no test coverage detected