#interfaces-go
Read more stories on Hashnode
Articles with this tag
Type assertion Type assertion is used to get the underlying concrete value of the interface variable. i.(Type) this is the syntax of type assertion,...
In Golang, an interface is a set of method signatures. When any type defines all the methods from an interface then that type implements the...