| The most recent one off the top of my head is the ? syntax RFC, which should reduce the amount of error-handling boilerplate. The big ones though are: * Specialization. This will allow you to write ultra-performent generic code by special-casing when you have the knowledge. It also will be a building block for the next few features. * The bag of features colloquially known as "inheritance", though that's not really a good name. * Non-lexical borrowing, and various other borrowck usability improvements. * Abstract return types, which will allow for you to remove some allocation and make certain type signatures much better. * Incremental compilation. Those are the ones on the short list. There are others too, like higher kinded types. |
Also features like that makes me wonder if you folks are really targeting C/System programmers. Sorry if I sound negative, that isn't my intention.