owacoder

Results 12 comments of owacoder

@guardrex - The URL to the ASP.NET Core article is changed, it is now found here instead: [https://learn.microsoft.com/en-us/aspnet/core/blazor/http-caching-issues?view=aspnetcore-8.0](https://learn.microsoft.com/en-us/aspnet/core/blazor/http-caching-issues?view=aspnetcore-8.0)

@StephanTLavavej - It's now been 5 years since standardization and currently there does not appear to be any conforming way to convert UTF to locale-specific multibyte using the C++ standard...

UTF-8 supports characters outside the BMP. The issue is that there is no single interface that allows conversion from full Unicode (including outside the BMP) to both UTF-8 and legacy...

Thanks for the quick response! Do you know if the above analysis regarding no standard way to convert full Unicode to multibyte is correct? And do we expect that MSVC...

I'd be interested in working on this.

Since using `format` as described by the paper is really unnecessary, and only a dependency on `to_chars` is needed, is it possible to just include `` instead of ``? Otherwise,...

It seems a severe pessimization to call out to `format("{}", _Val)` instead of just calling `to_chars` directly. 1. The parsing overhead for the format string would be completely unnecessary. 2....

This is now implemented here: [https://github.com/owacoder/STL/tree/p2587r3](https://github.com/owacoder/STL/tree/p2587r3). However, the new implementation requires that `` pull in ``. I don't know the STL procedures well enough to know if that is okay...

I'd be interested in working on this. Since it's small it'd be a good first PR.

This is now implemented here: [https://github.com/owacoder/STL/tree/p2497r0](https://github.com/owacoder/STL/tree/p2497r0)