|
|
|
|
|
by moonchrome
1116 days ago
|
|
Sounds like you haven't tried copilot, basically scenarios like : if(a) {...}
if(b) // here it predicts line by line from a once you start with similar logic
if(c) // here it will do a one shot generalization of a and b for c
Likewise method variations, enum mappings, inferring call parameters from names and signature, etc. - these things are trivial to check and test but take effort to type out. When you know what you want to do and someone suggests the solution you had in mind you're happy you saved half a min or min of typing.I'm as, if not more, likely to zone out on tedium and introduce the subtle bug myself. |
|