(x, lo, hi int)
| 138 | } |
| 139 | |
| 140 | func clampInt(x, lo, hi int) int { |
| 141 | if x < lo { |
| 142 | return lo |
| 143 | } |
| 144 | if x > hi { |
| 145 | return hi |
| 146 | } |
| 147 | return x |
| 148 | } |
| 149 | |
| 150 | func minInt(a, b int) int { |
| 151 | if a < b { |
no outgoing calls
no test coverage detected
searching dependent graphs…