func bytes.Compare

7 uses

	bytes (current package)
		bytes.go#L28: func Compare(a, b []byte) int {

	crypto/x509
		constraints.go#L138: 	i := bytes.Compare(a.IP, b.IP)
		constraints.go#L142: 	return bytes.Compare(a.Mask, b.Mask)
		constraints.go#L146: 	return bytes.Compare(constraint.IP, target)

	encoding/asn1
		marshal.go#L114: 	slices.SortFunc(l, bytes.Compare)

	golang.org/x/text/internal/language
		parse.go#L501: 			if bytes.Compare(scan.token, last) != -1 {
		parse.go#L527: 			if bytes.Compare(key, last) != 1 || scan.err != nil {