(a interface{}, i ...interface{})
| 36 | } |
| 37 | |
| 38 | func maxf(a interface{}, i ...interface{}) float64 { |
| 39 | aa := toFloat64(a) |
| 40 | for _, b := range i { |
| 41 | bb := toFloat64(b) |
| 42 | aa = math.Max(aa, bb) |
| 43 | } |
| 44 | return aa |
| 45 | } |
| 46 | |
| 47 | func min(a interface{}, i ...interface{}) int64 { |
| 48 | aa := toInt64(a) |
nothing calls this directly
no test coverage detected
searching dependent graphs…