func slices.Sort

32 uses

	slices (current package)
		iter.go#L65: 	Sort(s)
		sort.go#L16: func Sort[S ~[]E, E cmp.Ordered](x S) {

	crypto/tls
		ech.go#L27: 	slices.Sort(sortedSupportedAEADs)

	encoding/pem
		pem.go#L277: 		slices.Sort(h)

	expvar
		expvar.go#L316: 	slices.Sort(vars.keys)

	fmt
		errors.go#L37: 			slices.Sort(p.wrappedErrs)

	go/ast
		filter.go#L360: 	slices.Sort(filenames)

	go/build
		build.go#L1055: 	slices.Sort(p.AllTags)
		build.go#L1070: 		slices.Sort(p.SFiles)
		build.go#L1073: 		slices.Sort(p.IgnoredOtherFiles)
		build.go#L1115: 	slices.Sort(out)
		build.go#L1529: 	slices.Sort(all)

	go/doc
		reader.go#L667: 	slices.Sort(r.filenames)
		reader.go#L827: 	slices.Sort(list)

	go/printer
		gobuild.go#L111: 	slices.Sort(toDelete)

	go/types
		scope.go#L61: 	slices.Sort(names)
		typestring.go#L388: 		slices.Sort(termHashes)

	mime
		type.go#L153: 	slices.Sort(ret)

	net/http
		client.go#L798: 				slices.Sort(ss) // Ensure deterministic headers
		transfer.go#L322: 			slices.Sort(keys)

	path/filepath
		match.go#L348: 	slices.Sort(names)
		path.go#L447: 	slices.Sort(names)

	regexp
		onepass.go#L379: 				slices.Sort(runes)
		onepass.go#L403: 				slices.Sort(runes)

	runtime/debug
		garbage.go#L72: 			slices.Sort(sorted)

	runtime/pprof
		label.go#L54: 	slices.Sort(keyVals)

	sort
		sort.go#L168: func Ints(x []int) { slices.Sort(x) }
		sort.go#L174: func Float64s(x []float64) { slices.Sort(x) }
		sort.go#L179: func Strings(x []string) { slices.Sort(x) }

	testing
		benchmark.go#L611: 	slices.Sort(extraKeys)
		example.go#L51: 	slices.Sort(lines)
		testing.go#L2496: 	slices.Sort(list)