Overview of Go Generics
Let’s learn about Go generics and its features.
We'll cover the following...
This lesson discusses Go generics, which is a forthcoming Go feature. As of the publication of this course, generics and Go are under discussion by the Go community. However, one way or another, it is good to know how generics work, its philosophy, and what the generics discussions are about.
Note: Go generics has been one of the most requested additions to the Go programming language.
The main idea behind generics in Go, as well as any other programming language that supports generics, is not having to write special code for ...