Len returns length of slice
()
| 8 | |
| 9 | // Len returns length of slice |
| 10 | func (f Float64Data) Len() int { return len(f) } |
| 11 | |
| 12 | // Less returns if one number is less than another |
| 13 | func (f Float64Data) Less(i, j int) bool { return f[i] < f[j] } |
no outgoing calls