(a, b int)
| 113 | } |
| 114 | |
| 115 | func minOfInts(a, b int) int { |
| 116 | if a <= b { |
| 117 | return a |
| 118 | } |
| 119 | return b |
| 120 | } |
| 121 | |
| 122 | // QueryProvider defines the interface for querys used by RunLimitedVariablesQuery. |
| 123 | type QueryProvider interface { |
no outgoing calls
no test coverage detected