Convert specified value to compact string(no zeros added).
You can find more information in comments below.
/**
Convert float to string without zeroes at the end
@param value Float value
@return Wide character string
*/
String ToStringCompact(const float value);
/**
Convert double to string without zeroes at the end
@param value Double value
@return Wide character string
*/
String ToStringCompact(const double value);
Namespace: | nitisa |
Include: | Nitisa/Core/Strings.h |