pikotools/convert
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
..
Makefile added: functions for dealing with white characters: 2017-12-05 16:32:21 +00:00
Makefile.dep added: Toa() methods for converting to a string (new file convert/inttostr.cpp): 2021-03-03 02:24:30 +01:00
Makefile.o.dep added: Toa() methods for converting to a string (new file convert/inttostr.cpp): 2021-03-03 02:24:30 +01:00
convert.h added to convert: PatternReplacer 2019-01-07 03:29:34 +00:00
inttostr.cpp added: Toa() methods for converting to a string (new file convert/inttostr.cpp): 2021-03-03 02:24:30 +01:00
inttostr.h added: Toa() methods for converting to a string (new file convert/inttostr.cpp): 2021-03-03 02:24:30 +01:00
misc.cpp added: functions for dealing with white characters: 2017-12-05 16:32:21 +00:00
misc.h added: functions for dealing with white characters: 2017-12-05 16:32:21 +00:00
patternreplacer.h added to convert: PatternReplacer 2019-01-07 03:29:34 +00:00
strtoint.h added: to methods Toull(), Toll(), Toul(), Toui(), Tol(), Toi() 2018-01-05 20:03:11 +00:00
text.cpp added: to convert/text 2018-05-25 17:12:28 +00:00
text.h added to convert/text.h: 2018-10-29 23:47:23 +00:00