|
|
|
|
|
by llorllale
2298 days ago
|
|
> Explicit interfaces. In Go, you cannot have multiple functions with the same name. Because of how this interacts with implicit interfaces, if two interfaces you need to implement require a method with the same name, it gets very hard to manage. Normally this is not an issue, but I also like being explicit about things. This was recently fixed in Go 1.14: https://golang.org/doc/go1.14#language |
|