Is there any reason why std::from_chars
doesn't have an overload for wchar_t
?
Currently, there are only four overloads one of them being:
constexpr std::from_chars_result from_chars( const char* first, const char* last,
/*see below*/& value, int base = 10 );
So what is the reason that there doesn't exist any overload for wchar_t
or other character types? Is there any chance that they will be added in C++26? If not then are there equivalents for wchar_t
?