You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
simdutf currently only uses char16_t or char32_t for UTF16/32 which makes it troublesome when trying to use it with code based on wchar_t cause in such case it either requires unnecessary copying or undefined-behaviour from pointer casting.
As such, simdutf providing APIs that use the appropriate encoding based on wchar_t size would make it faster, safer and easier to handle such code on various platforms and compilers.