func slices.Equal

8 uses

	slices (current package)
		slices.go#L20: func Equal[S ~[]E, E comparable](s1, s2 S) bool {

	encoding/asn1
		asn1.go#L229: 	return slices.Equal(oi, other)

	go/build
		build.go#L1142: 		ctxt.JoinPath != nil || ctxt.SplitPathList != nil || ctxt.IsAbsPath != nil || ctxt.IsDir != nil || ctxt.HasSubdir != nil || ctxt.ReadDir != nil || ctxt.OpenFile != nil || !slices.Equal(ctxt.ToolTags, defaultToolTags) || !slices.Equal(ctxt.ReleaseTags, defaultReleaseTags) {

	html/template
		context.go#L50: 		slices.Equal(c.jsBraceDepth, d.jsBraceDepth) &&

	os
		root_openat.go#L376: 			if len(newparts) < i || !slices.Equal(parts[:i], newparts[:i]) {

	regexp/syntax
		regexp.go#L79: 		return x.Flags&FoldCase == y.Flags&FoldCase && slices.Equal(x.Rune, y.Rune)

	testing
		example.go#L71: 		if !slices.Equal(gotLines, wantLines) && recovered == nil {