type sort.Float64Slice
6 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) }
 |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |