type sort.Interface
18 uses
sort (current package)
sort.go#L12: type Interface interface {
sort.go#L38: func insertionSort(data Interface, a, b int) {
sort.go#L48: func siftDown(data Interface, lo, hi, first int) {
sort.go#L66: func heapSort(data Interface, a, b int) {
sort.go#L87: func medianOfThree(data Interface, m1, m0, m2 int) {
sort.go#L103: func swapRange(data Interface, a, b, n int) {
sort.go#L109: func doPivot(data Interface, lo, hi int) (midlo, midhi int) {
sort.go#L196: func quickSort(data Interface, a, b, maxDepth int) {
sort.go#L229: func Sort(data Interface) {
sort.go#L255: Interface
sort.go#L264: func Reverse(data Interface) Interface {
sort.go#L269: func IsSorted(data Interface) bool {
sort.go#L378: func Stable(data Interface) {
sort.go#L382: func stable(data Interface, n int) {
sort.go#L425: func symMerge(data Interface, a, m, b int) {
sort.go#L511: func rotate(data Interface, a, m, b int) {
container/heap
heap.go#L33: sort.Interface