type sort.Interface

17 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#L377: func Stable(data Interface) {
		sort.go#L381: func stable(data Interface, n int) {
		sort.go#L424: func symMerge(data Interface, a, m, b int) {
		sort.go#L510: func rotate(data Interface, a, m, b int) {