MCPcopy Create free account
hub / github.com/IChooseYou/Reclass / fmtInt16

Function fmtInt16

src/format.cpp:75–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73
74QString fmtInt8(int8_t v) { return hexVal((uint8_t)v); }
75QString fmtInt16(int16_t v) { return hexVal((uint16_t)v); }
76QString fmtInt32(int32_t v) { return hexVal((uint32_t)v); }
77QString fmtInt64(int64_t v) { return hexVal((uint64_t)v); }
78QString fmtUInt8(uint8_t v) { return hexVal(v); }

Callers 1

readValueImplFunction · 0.85

Calls 1

hexValFunction · 0.85

Tested by

no test coverage detected