|
|
|
|
|
by grishka
2093 days ago
|
|
How worse? How would you even begin to understand this line without an IDE? auto something = someObject->someFunction();
// and then 10 lines of various operations on "something"
// also imagine that someObject is also auto and returned from somewhere
I've had to deal with code like this. It wasn't pleasant, even with an IDE. There are very few cases where type inference is good and doesn't make your code an unreadable mess. |
|