Skip to content

Rose::StringUtility::numberToString

numberToString overloads

Synopses

Declared in <src/Rose/StringUtility/NumberToString.h>

[[visibility]]
std::string
numberToString(int);
[[visibility]]
std::string
numberToString(unsigned int);
[[visibility]]
std::string
numberToString(long);
[[visibility]]
std::string
numberToString(unsigned long);

Convert an integer to a string.

[[visibility]]
std::string
numberToString(long long);
[[visibility]]
std::string
numberToString(unsigned long long);

Convert a floating‐point number to a string.

[[visibility]]
std::string
numberToString(double);

Convert a pointer to a string.

[[visibility]]
std::string
numberToString(void const*);

Return Value

  • String representation of the input value.

  • String representation of the pointer.

Created with MrDocs