(a, b int)
| 20 | } |
| 21 | |
| 22 | func intMax(a, b int) int { |
| 23 | if a > b { |
| 24 | return a |
| 25 | } else { |
| 26 | return b |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | func defaultFormat(v interface{}, f fmt.State, c rune) { |
| 31 | buf := make([]string, 0, 10) |
no outgoing calls
no test coverage detected
searching dependent graphs…