type sort.Float64Slice
8 uses
sort (current package)
search.go#L147: func (p Float64Slice) Search(x float64) int { return SearchFloat64s(p, x) }
sort.go#L129: type Float64Slice []float64
sort.go#L131: func (x Float64Slice) Len() int { return len(x) }
sort.go#L139: func (x Float64Slice) Less(i, j int) bool { return x[i] < x[j] || (isNaN(x[i]) && !isNaN(x[j])) }
sort.go#L140: func (x Float64Slice) Swap(i, j int) { x[i], x[j] = x[j], x[i] }
sort.go#L148: func (x Float64Slice) Sort() { Sort(x) }
sort.go#L171: func Float64s(x []float64) { Sort(Float64Slice(x)) }
sort.go#L187: func Float64sAreSorted(x []float64) bool { return IsSorted(Float64Slice(x)) }
|
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. |