One of the biggest features I want to see is the ability for an array to hold multiple types. Would make it easier to return a bunch of different types of information from a function.
There's always workarounds, but nothing beats just returning an array containing all the values.
Yes I use std::tuple. I like it, but its not as convenient. Don't like the "std::get<>" syntax much. You can't add more elements to it easily as you could something like a vector.
I was thinking similar to a Python array which could easily hold and deal with multiple types.
I don't think this kind of thing will ever come to C++ though.