Union
func Union[T comparable](slices ...[]T) []T
Union takes a variadic number of slices of type T and returns a slice of type T containing the unique elements in the different slices.
func Union[T comparable](slices ...[]T) []T
Union takes a variadic number of slices of type T and returns a slice of type T containing the unique elements in the different slices.