func sort.Sort

45 uses

	sort (current package)
		sort.go#L229: func Sort(data Interface) {
		sort.go#L289: func (x IntSlice) Sort() { Sort(x) }
		sort.go#L313: func (x Float64Slice) Sort() { Sort(x) }
		sort.go#L323: func (x StringSlice) Sort() { Sort(x) }
		sort.go#L328: func Ints(x []int) { Sort(IntSlice(x)) }
		sort.go#L332: func Float64s(x []float64) { Sort(Float64Slice(x)) }
		sort.go#L335: func Strings(x []string) { Sort(StringSlice(x)) }

	compress/flate
		huffman_code.go#L318: 	sort.Sort(s)
		huffman_code.go#L333: 	sort.Sort(s)

	encoding/json
		encode.go#L1381: 	sort.Sort(byIndex(fields))

	github.com/robfig/cron/v3
		cron.go#L251: 		sort.Sort(byTime(c.entries))

	go/ast
		commentmap.go#L27: 		sort.Sort(orderedList)
		commentmap.go#L323: 	sort.Sort(byInterval(nodes))

	go/doc
		reader.go#L801: 	sort.Sort(&data{n, swap, less})

	go/scanner
		errors.go#L74: 	sort.Sort(p)
		errors.go#L79: 	sort.Sort(p)

	go/types
		resolver.go#L623: 	sort.Sort(inSourceOrder(objList))
		typeset.go#L367: 	sort.Sort(byUniqueMethodName(list))

	golang.org/x/mod/semver
		semver.go#L169: 	sort.Sort(ByVersion(list))

	golang.org/x/net/http2
		http2.go#L352: 	sort.Sort(s)
		http2.go#L361: 	sort.Sort(s)
		writesched_priority.go#L198: 	sort.Sort(sortPriorityNodeSiblings(*tmp))

	golang.org/x/net/trace
		events.go#L90: 			sort.Sort(data.EventLogs)
		trace.go#L278: 		sort.Sort(data.Traces)
		trace.go#L499: 		sort.Sort(trl)
		trace.go#L513: 				sort.Sort(trl)

	golang.org/x/text/unicode/bidi
		bracket.go#L171: 			sort.Sort(p.pairPositions)

	golang.org/x/tools/internal/gcimporter
		bexport.go#L393: 	sort.Sort(methodsByName(methods))
		bimport.go#L161: 	sort.Sort(byPath(list))
		iimport.go#L245: 		sort.Sort(byPath(list))

	google.golang.org/grpc/internal/channelz
		funcs.go#L564: 	sort.Sort(int64Slice(ids))
		funcs.go#L611: 	sort.Sort(int64Slice(ids))
		funcs.go#L664: 	sort.Sort(int64Slice(ids))

	net
		addrselect.go#L277: 	sort.Sort(sort.Reverse(byMaskLength(rfc6724policyTable)))
		dnsclient.go#L195: 	sort.Sort(addrs)
		dnsclient.go#L225: 	sort.Sort(s)

	net/http
		h2_bundle.go#L3565: 	sort.Sort(s)
		h2_bundle.go#L3574: 	sort.Sort(s)
		h2_bundle.go#L10532: 	sort.Sort(http2sortPriorityNodeSiblings(*tmp))
		header.go#L178: 	sort.Sort(hs)

	regexp
		onepass.go#L386: 				sort.Sort(runeSlice(runes))
		onepass.go#L410: 				sort.Sort(runeSlice(runes))

	regexp/syntax
		parse.go#L1687: 	sort.Sort(ranges{rp})

	runtime/pprof
		pprof.go#L433: 	sort.Sort(&keysByCount{keys, count})

	vendor/golang.org/x/text/unicode/bidi
		bracket.go#L171: 			sort.Sort(p.pairPositions)