-
@WuTangTan @Macktimus also only know C++ auto, but a good example are complex types like using iterators: std::vector<MyLongType> vec; auto it = vec.begin();
-
@WuTangTan @Macktimus theres really no confusion over what type thats going to be, and now you dont have to write std::vector<MyType>::iterator.
-
@WuTangTan @Macktimus Also less refactoring when you change from MyType to something else I guess.