methods
A method is a function with a receiver. A method declaration binds an identifier,
the method name, to a method, and associates the method with the receiver's base type.
func (t Type) methodName(parameter list) {
}
The above snippet creates a metho...
blog.cloudnativefolks.org4 min read