Intersection
func Intersection[T comparable](slices ...[]T) []T
Intersection takes a variadic number of slices of type T and returns a slice of type T containing any values that are common to all slices.
func Intersection[T comparable](slices ...[]T) []T
Intersection takes a variadic number of slices of type T and returns a slice of type T containing any values that are common to all slices.