|
|
|
|
|
by stcredzero
2247 days ago
|
|
Personally I dislike var/auto in languages because I like having types explicitly written. But in case of languages like Java or Kotlin you can move the cursor over the variable name and you will see the type, also you can right-click and select "replace with explicit type" and it will work. In D, IDEs struggle with templates and can rarely index templated code (no wonder, because most of the code doesn't exist until build time). It's 2020. Why couldn't things work like this, where one can open a window for a concrete type using templates, and it shows the code? |
|