Explore >> Select a destination


You are here

jordanorelli.com
| | blog.percywegmann.com
4.8 parsecs away

Travel
| | Don't Overthink It
| | www.integralist.co.uk
3.4 parsecs away

Travel
| | Interfaces in Go Name Your Interface Arguments Keep Interfaces Small Accept Interfaces, Return Concrete Types Don't Return Concrete Types Use existing interfaces Don't Force Interfaces Embedding Interfaces Upgrading Interfaces Standard Library Interfaces Tight Coupling Dependency Injection Refactoring Considerations Testing More flexible solutions? Conclusion This post is going to explain the importance of interfaces, and the concept of programming to abstractions (using the Go programming language), by ...
| | masnun.com
4.2 parsecs away

Travel
| | In Go or Golang, declaring an interface is pretty simple and easy. type Printer interface { Print(string) } We just defined an interface named Printerthat required an implementer to have a method named Printwhich takes a stringparameter and returns nothing. Interfaces are implemented implicitly in Go. Any type that has the Print(string)method implements the interface. [...]
| | begriffs.com
25.9 parsecs away

Travel
| How to build, version, and install libraries