# implements **Repository Path**: mirrors_dominikh/implements ## Basic Information - **Project Name**: implements - **Description**: Check which interfaces a Go type implements - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README **This program has been deprecated. Consider using [guru](https://godoc.org/golang.org/x/tools/cmd/guru) instead, which can answer the same question as this tool, and many more.** # implements _implements_ is a command line tool that will tell you which types implement which interfaces, or which interfaces are implemented by which types. ## Install go get honnef.co/go/implements ## Usage `implements -help` to get a description of the use flags and example usage. ## But… Yes, there are potentially ℙ(M) unique interfaces (all combinations of method signatures), and an unlimited amount of not-unique named and unnamed interfaces. That, however, isn't the scope of this tool. This is more of a "what types _that I care about_ implement io.Reader?" or a "does my type really implement http.File?" – This would be especially useful for early discovery of the standard libraries, enriching Go documentation and assisting editors and IDEs in providing live feedback and possibly auto completion. Again, the idea is not to run this unconditionally on all code there is, but on for example the standard library and specific packages/types you care about.