(b *testing.B)
| 37 | } |
| 38 | |
| 39 | func BenchmarkModeSmallFloatSlice(b *testing.B) { |
| 40 | for i := 0; i < b.N; i++ { |
| 41 | _, _ = stats.Mode(makeFloatSlice(5)) |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | func BenchmarkModeSmallRandFloatSlice(b *testing.B) { |
| 46 | lf := makeRandFloatSlice(5) |
nothing calls this directly
no test coverage detected
searching dependent graphs…