0.2.14
This release makes more use of const generics, unconditionally using them when the "fmt" feature is enabled, and using them to generate less code in the concatcp
and formatcp
macros.
Changelog
0.2.14
Made the const_format::fmt
API that uses const generics unconditional, since const generics were stabilized in late 2020 and the fmt
API requires the nightly compiler.
Repurposed the "const_generics" feature to generate less code in the concatcp
and formatcp
macros, by moving some of their implementation to a function that uses const generics.
Fixed a few documentation issues.