#include <iostream>
#include <string>
#include <sstream>
#include <iomanip>
#include <cmath>
Go to the source code of this file.
|
| namespace | ug |
| | the ug namespace
|
| |
|
| std::string | ug::ConvertNumber (uint64_t size, unsigned int width, unsigned int numDisplayedDigits) |
| | returns number 'size' in a more human readable format (using IEC binary prefixes)
|
| |
| std::string | ug::ConvertNumberSI (uint64_t size, unsigned int width, unsigned int numDisplayedDigits) |
| | returns number 'size' in a more human readable format (using SI prefixes)
|
| |
| LogAssistant & | ug::GetLogAssistant () |
| |
| unsigned int | ug::GetNumberOfDigits (uint64_t i) |
| |