Header-only C++ library with commonly useful stuff.
Find a file
King_DuckZ 9919f1aeb2 Use std::to_string when doing ascii conversions
It's fast, it works, it's correct. No need for
any of the fancy stuff when all we want is int
to ascii string.

Currently on my system the implementation of
std::to_string is *very* similar to mine, but
it doesn't have the overhead of calculating
ASCII offsets because their lookup already
contains ASCII values.
2021-06-07 23:10:35 +02:00
include/duckhandy Use std::to_string when doing ascii conversions 2021-06-07 23:10:35 +02:00
lib Update Catch2 to latest v2.x branch 2021-05-28 02:54:18 +02:00
test/unit Working on optimisation but I'm still losing to std::to_string() 2021-05-29 22:52:30 +02:00
.gitignore Get rid of lexical_cast. 2020-08-13 20:47:42 +01:00
.gitmodules Remove submodule, use the system Sprout 2020-05-05 01:59:04 +02:00
CMakeLists.txt Working on optimisation but I'm still losing to std::to_string() 2021-05-29 22:52:30 +02:00
COPYING First import 2016-07-14 14:59:15 +01:00
speed_test_int_conv.cpp Same conversion but without any lookup 2021-06-07 20:21:32 +02:00