Because it not really needed in C++ or even C as you can directly cast any type to int as all variables are sequences of bytes which can be casted to int. FString is array of TCHARs so you can use [] to get perticilar char
(int32)String[0]
I also find TChar<TCHAR>::ConvertCharDigitToInt(String[0]); that does similar thing: