#include "sprintf"
#include "typedefs"
#include <cstddef>
#include <vector>
Go to the source code of this file.
|
| tools |
| inlined C code : ///////////////////////////////////
|
|
|
bool | tools::num2s (unsigned short a_value, std::string &a_s) |
|
bool | tools::num2s (short a_value, std::string &a_s) |
|
bool | tools::num2s (unsigned int a_value, std::string &a_s) |
|
bool | tools::num2s (int a_value, std::string &a_s) |
|
bool | tools::num2s (uint64 a_value, std::string &a_s) |
|
bool | tools::num2s (int64 a_value, std::string &a_s) |
|
bool | tools::num2s (float a_value, std::string &a_s) |
|
bool | tools::num2s (double a_value, std::string &a_s) |
|
bool | tools::size_t2s (size_t a_value, std::string &a_s) |
|
bool | tools::ptrdiff_t2s (ptrdiff_t a_value, std::string &a_s) |
|
template<class T > |
bool | tools::numas (const T &a_value, std::string &a_s) |
|
template<class T > |
bool | tools::size_tas (const T &a_value, std::string &a_s) |
|
bool | tools::num2s (const std::string &a_value, std::string &a_s) |
|
template<class VEC > |
bool | tools::nums2s (const VEC &a_vals, std::string &a_s, const std::string &a_sep="\n", bool a_sep_at_end=false) |
|
template<class T > |
bool | tools::nums2s (const std::vector< T > &a_vals, std::string &a_s, const std::string &a_sep="\n", bool a_sep_at_end=false) |
|
◆ tools_num2s
Definition at line 5 of file num2s.