Is there anything like this in Standard C++ / STL? Ideally it should be constructed like
fstring s = fstring(10);
I need to sometimes cons
With ISO C++ +17 you can do this
#include ...... char dataBuffer[BUFF_SIZE]; auto commandString = std::string_view{ dataBuffer }; ......