DEV Community

Discussion on: The Problem with Interfaces, and how Go Fixed it

 
dean profile image
dean

It doesn't cause problems from my experience. Also interfaces in Go still require a full method signature. But in Go, interfaces shouldn't be used to define what a type is, but rather what it does. To tell what a type is, you can use GoDoc.