Convert X to a hexadecimal string.
Declared in <llvm/ADT/StringExtras.h>
std::string
utohexstr(
uint64_t X,
bool LowerCase = false,
unsigned int Width = 0);
The hexadecimal string representation of X.
| Name | Description |
|---|---|
| X | value to convert |
| LowerCase | use lowercase hex digits when true |
| Width | minimum number of digits to emit (zero-padded) |