Thread++
Client-Server Multithreading with C++
Functions
Timer.cpp File Reference

Code for the class CTimer. More...

#include <sstream>
#include <cmath>
#include "Timer.h"
#include <time.h>

Functions

const std::string to_string (const float x, const size_t n)
 
void AppendCommaSeparator (std::string &s)
 Append comma separator. More...
 

Function Documentation

◆ AppendCommaSeparator()

void AppendCommaSeparator ( std::string &  s)

Append a comma and a space to a string provided it is non-empty.

Parameters
s[in, out] String to append to.

◆ to_string()

const std::string to_string ( const float  x,
const size_t  n 
)

Convert float to a fixed-precision string without trailing zeros. Unfortunately, std::to_string does not have a way to limit precision, so we'll have to get creative with std::ostringstream instead.

Parameters
xFloating point number
nMaximum number of digits after the decimal.
Returns
Fixed-precision string with no trailing zeros.