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 C++11, one can go for
std::array s;
Also std::string equivalent can always be constructed, when required
std::string s2(std::begin(s), std::end(s));