(a interface{}, i ...interface{})
| 56 | } |
| 57 | |
| 58 | func minf(a interface{}, i ...interface{}) float64 { |
| 59 | aa := toFloat64(a) |
| 60 | for _, b := range i { |
| 61 | bb := toFloat64(b) |
| 62 | aa = math.Min(aa, bb) |
| 63 | } |
| 64 | return aa |
| 65 | } |
| 66 | |
| 67 | func until(count int) []int { |
| 68 | step := 1 |
nothing calls this directly
no test coverage detected
searching dependent graphs…