Convert an unsigned integer to a decimal string.
Declared in <llvm/ADT/StringExtras.h>
std::string
utostr(
uint64_t X,
bool isNeg = false);
The decimal string representation of X.
| Name | Description |
|---|---|
| X | value to convert |
| isNeg | when true, prefix the result with '-' |