Nick Porcino
Nick Porcino
FWIW, string_view is getting used more frequently nowadays, so C++ users of string_view are faced with the extra load of copying the string to add a terminator. I'm not pushing...
In my code I am now extensively using the rather verbose TextUnformatted. At first it was a workaround for string_view, and then because I realized all my Text("trivial") calls were...
A terrible idea I had around a name for TextUnformatted was two versions of Text. ``` void Text(const char* str); // same as TextUnformatted template void Text(const char* str, T...