If you use the ==
or !=
comparison operators you can only compare slices to nil
. So how do you check if two slices are equal?
Well.. that depends on what you mean by “equal slices”. But often you want to check if slices are of the same length and have equal elements at the same indices.
Depending on your Go version you can:
- In 1.21, use the
Equal
function in theslices
package in the standard library. - For earlier versions, you can find the same function in the experimental
slices
package.
==
. Depending on your situation you may want to compare the elements in a different way. The EqualFunc
function allows you to specify a custom comparison function.
If you are using a Go version that does not support generics, you can always implement your own EqualSlices
function. See the example below:
package main
import (
"fmt"
"slices"
)
func main() {
x := []string{"🙈", "🙉", "🙊"}
y := []string{"🙈", "🦍"}
fmt.Println("slices.Equal:")
fmt.Println("x equal to y?", slices.Equal(x, y))
fmt.Println("y equal to x?", slices.Equal(y, x))
fmt.Println("x equal to x?", slices.Equal(x, x))
fmt.Println("y equal to y?", slices.Equal(y, y))
fmt.Println("---")
fmt.Println("EqualSlices:")
fmt.Println("x equal to y?", EqualSlices(x, y))
fmt.Println("y equal to x?", EqualSlices(y, x))
fmt.Println("x equal to x?", EqualSlices(x, x))
fmt.Println("y equal to y?", EqualSlices(y, y))
}
// EqualSlices checks if two slices have equal contents.
// For two slices to be equal:
// - They need to have the same number of elements.
// - Each element must be equal using the == operator.
func EqualSlices(s1, s2 []string) bool {
if len(s1) != len(s2) {
return false
}
for i, v := range s1 {
if s2[i] != v {
return false
}
}
return true
}
Keep Learning. Subscribe to my Newsletter.
Gain access to more content and get notified of the latest articles:
- A Brief Guide To Time for Developers
- Source code
- Unit tests
I send emails every 1-2 weeks and will keep your data safe. You can unsubscribe at any time.