...

/

Satisfying Interfaces

Satisfying Interfaces

This lesson discusses implicit interfaces and how Go interfaces are satisfied.

We'll cover the following...

Implicit Interfaces

A type implements an interface by implementing the methods that it contains.

There is no explicit declaration of intent. ...