From f26a6dc4d527d0ae6d51ae61701a7e908e7fdb28 Mon Sep 17 00:00:00 2001 From: clyne Date: Fri, 26 Jun 2020 18:50:47 -0400 Subject: [PATCH] Add note on custom character types --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ce688fe..aa99175 100644 --- a/README.md +++ b/README.md @@ -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:**