Constraints

Let’s get an overview of the constraints in Go and how they are utilized.

We'll cover the following...

Let’s say that we have a function that works with generics that multiplies two numeric values. Should this function work with all data types? Can this function work with all data types? Can we multiply two strings or two structures? The solution for avoiding that kind of issue is the use of constraints.

Forget about multiplication for a while and think about something simpler. Let us ...