func sort.Sort
23 uses
sort (current package)
sort.go#L45: func Sort(data Interface) {
sort.go#L125: func (x IntSlice) Sort() { Sort(x) }
sort.go#L148: func (x Float64Slice) Sort() { Sort(x) }
sort.go#L158: func (x StringSlice) Sort() { Sort(x) }
sort.go#L165: func Ints(x []int) { Sort(IntSlice(x)) }
sort.go#L171: func Float64s(x []float64) { Sort(Float64Slice(x)) }
sort.go#L176: func Strings(x []string) { Sort(StringSlice(x)) }
compress/flate
huffman_code.go#L314: sort.Sort(s)
huffman_code.go#L329: sort.Sort(s)
encoding/json
encode.go#L1233: sort.Sort(byIndex(fields))
github.com/gotd/neo
time.go#L128: sort.Sort(past)
github.com/gotd/td/internal/mtproto/salts
salts.go#L82: sort.Sort(saltSlice(s.salts))
github.com/gotd/td/telegram/dcs
dns.go#L148: sort.Sort(sortByLen(txt))
net
dnsclient.go#L192: sort.Sort(addrs)
dnsclient.go#L222: sort.Sort(s)
net/http
h2_bundle.go#L3667: sort.Sort(s)
h2_bundle.go#L3676: sort.Sort(s)
h2_bundle.go#L11059: sort.Sort(http2sortPriorityNodeSiblings(*tmp))
header.go#L185: sort.Sort(hs)
regexp
onepass.go#L386: sort.Sort(runeSlice(runes))
onepass.go#L410: sort.Sort(runeSlice(runes))
regexp/syntax
parse.go#L1830: sort.Sort(ranges{rp})
vendor/golang.org/x/text/unicode/bidi
bracket.go#L171: sort.Sort(p.pairPositions)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |