diff options
author | clyne <clyne@bitgloo.com> | 2020-06-26 18:50:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-26 18:50:47 -0400 |
commit | f26a6dc4d527d0ae6d51ae61701a7e908e7fdb28 (patch) | |
tree | e958968e72755f6c812447203282055dbeb36fcf /README.md | |
parent | 84401c74731927a237ccd8e7b59444d3f0630664 (diff) |
Add note on custom character types
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5,6 +5,7 @@ * Convert any integral type to a string at compile-time * Supports converting to any base between 2 and 36 inclusive * No external dependencies, only includes `type_traits` for template parameter checking +* Supports custom character types, e.g. `to_string<123, 10, wchar_t>` **How to use:** |