()
| 8 | ) |
| 9 | |
| 10 | func ExampleMin() { |
| 11 | d := stats.LoadRawData([]interface{}{1.1, "2", 3.0, 4, "5"}) |
| 12 | a, _ := stats.Min(d) |
| 13 | fmt.Println(a) |
| 14 | // Output: 1.1 |
| 15 | } |
| 16 | |
| 17 | func TestMin(t *testing.T) { |
| 18 | for _, c := range []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…