This implements a new set of functions to convert an integral to a
string. Unlike the already available functions these can be:
- used with all character types,
- used with 128 bit integrals.
This implements the version for base 10, specialized versions for
base 2, 8, and 16 will be added later.
These functions perform better for numbers with a smaller amount of
digits and worse for number with a larger number of digits. The goal is
to investigate these differences later and see whether the new code can
be faster in all cases. It is also the intention to move to one set of
functions in the future. Since the format code still is a moving target
it's preferable to have two implementations at the moment.
Note: The usage of this code in the format header will be in a separate
patch.
Depends on D96057
clang-format suggested style edits found: