MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / FormatHexUInt32

Method FormatHexUInt32

tests/gtest/gtest-all.cc:3458–3462  ·  view source on GitHub ↗

Formats an int value as "%X".

Source from the content-addressed store, hash-verified

3456
3457// Formats an int value as "%X".
3458std::string String::FormatHexUInt32(UInt32 value) {
3459 std::stringstream ss;
3460 ss << std::hex << std::uppercase << value;
3461 return ss.str();
3462}
3463
3464// Formats an int value as "%X".
3465std::string String::FormatHexInt(int value) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected