Refactorization with auto
Let's see if we can refactor existing code to work with auto instead of explicit type declarations.
We'll cover the following...
Problems with refactoring data types #
auto
supports the refactorization of our code very well. First, it’s very easy to restructure our code if there is no type information.
Second, the compiler automatically takes ...