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

Method FormatHexInt

tests/gtest/gtest-all.cc:3465–3467  ·  view source on GitHub ↗

Formats an int value as "%X".

Source from the content-addressed store, hash-verified

3463
3464// Formats an int value as "%X".
3465std::string String::FormatHexInt(int value) {
3466 return FormatHexUInt32(static_cast<UInt32>(value));
3467}
3468
3469// Formats a byte as "%02X".
3470std::string String::FormatByte(unsigned char value) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected