Go to file
Tomasz Sowa 448ad42961 added: Toa() methods for converting to a string (new file convert/inttostr.cpp):
template<class StringType> void Toa(unsigned long long value, StringType & res, bool clear_string = true, int base = 10);
template<class StringType> void Toa(long long value, StringType & res, bool clear_string = true, int base = 10);
template<class StringType> void Toa(unsigned long value, StringType & res, bool clear_string = true, int base = 10);
template<class StringType> void Toa(long value, StringType & res, bool clear_string = true, int base = 10);
template<class StringType> void Toa(unsigned int value, StringType & res, bool clear_string = true, int base = 10);
template<class StringType> void Toa(int value, StringType & res, bool clear_string = true, int base = 10);
template<class StringType> void Toa(unsigned short value, StringType & res, bool clear_string = true, int base = 10);
template<class StringType> void Toa(short value, StringType & res, bool clear_string = true, int base = 10);
std::wstring Toa(unsigned long long value, int base);
std::wstring Toa(long long value, int base);
std::wstring Toa(unsigned long value, int base);
std::wstring Toa(long value, int base);
std::wstring Toa(unsigned int value, int base);
std::wstring Toa(int value, int base);
std::wstring Toa(unsigned short value, int base);
std::wstring Toa(short value, int base);
2021-03-03 02:24:30 +01:00
convert added: Toa() methods for converting to a string (new file convert/inttostr.cpp): 2021-03-03 02:24:30 +01:00
date added: to Date: support for parsing timezone offsets 2019-01-31 20:56:40 +00:00
log a comment added in Log::~Log(), we have to consider whether calling save_log_and_clear() in ~Log() should be removed 2021-02-17 16:51:06 +01:00
mainparser added: functions for dealing with white characters: 2017-12-05 16:32:21 +00:00
mainspaceparser added to convert: PatternReplacer 2019-01-07 03:29:34 +00:00
membuffer fixed: operator==() and operator!=() in iterators in MemBuffer<> template 2021-02-17 16:53:19 +01:00
space in spacetojson: if there is only one item then do not put it in the table 2019-02-19 13:08:07 +00:00
textstream added: to Log: IntMinWidth(size_t min_width) 2019-01-28 18:06:18 +00:00
utf8 added to convert: PatternReplacer 2019-01-07 03:29:34 +00:00
.gitignore added .gitignore file 2021-02-17 17:04:05 +01:00
Makefile changed in logger: 2018-11-23 17:07:52 +00:00