MCPcopy Create free account
hub / github.com/PDAL/PDAL / hexString

Function hexString

plugins/e57/libE57Format/src/StringFunctions.h:57–62  ·  view source on GitHub ↗

@overload

Source from the content-addressed store, hash-verified

55
56 /// @overload
57 inline std::string hexString( uint8_t x )
58 {
59 std::ostringstream ss;
60 ss << "0x" << std::hex << std::setw( 2 ) << std::setfill( '0' ) << static_cast<unsigned>( x );
61 return ss.str();
62 }
63
64 /// @overload
65 inline std::string hexString( uint16_t x )

Callers 3

dumpMethod · 0.85
processRecordsMethod · 0.85
dumpMethod · 0.85

Calls 1

strMethod · 0.80

Tested by

no test coverage detected