Default Methods in Go

13 ingve 2 8/25/2025, 8:28:21 PM mcyoung.xyz ↗

Comments (2)

arp242 · 5h ago
The thing with default methods is that while the code may not "break" in the sense of "will not compile", it may very well break in the sense of "issues runtime panic", or even worse: "does the wrong thing".

I do agree all of this can be quite painful, but I'm not so sure that default methods are the right solution.