func sort.Sort

31 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#L1380: 	sort.Sort(byIndex(fields))

	go.etcd.io/bbolt
		db.go#L617: 	sort.Sort(txsById(db.txs))
		freelist.go#L103: 	sort.Sort(m)
		freelist.go#L292: 		sort.Sort(pgids(idsCopy))
		freelist.go#L402: 	sort.Sort(ids)
		freelist_hmap.go#L84: 	sort.Sort(pgids(m))
		node.go#L344: 	sort.Sort(n.children)
		tx.go#L522: 	sort.Sort(pages)

	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#L3428: 	sort.Sort(s)
		h2_bundle.go#L3437: 	sort.Sort(s)
		h2_bundle.go#L10045: 	sort.Sort(http2sortPriorityNodeSiblings(*tmp))
		header.go#L175: 	sort.Sort(hs)

	regexp
		onepass.go#L385: 				sort.Sort(runeSlice(runes))
		onepass.go#L409: 				sort.Sort(runeSlice(runes))

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

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

	src.elv.sh/pkg/edit
		binding_map.go#L32: 	sort.Sort(keys)

	src.elv.sh/pkg/store
		dir.go#L88: 		sort.Sort(sort.Reverse(dirList(dirs)))

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