s-ol’s avatars-ol’s Twitter Archive—№ 557

    1. …in reply to @WuTangTan
      @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();
  1. …in reply to @S0lll0s
    @WuTangTan @Macktimus theres really no confusion over what type thats going to be, and now you dont have to write std::vector<MyType>::iterator.
    1. …in reply to @S0lll0s
      @WuTangTan @Macktimus Also less refactoring when you change from MyType to something else I guess.