Several people have asked:
Why both runtime-sized arrays and std::dynarray in C++14?
Draft C++14 includes both runtime-sized arrays and the
std::dynarraycontainer. From what I can tell, the only real difference between the two is thatstd::dynarrayhas an STL interface (e.g.,begin,end,size, etc.), while runtime-sized arrays do not. So why does C++14 need them both?

Add a Comment
Comments are closed.