(result *BigInt, neg bool, half int)
| 179 | } |
| 180 | |
| 181 | func roundHalfUp(result *BigInt, neg bool, half int) bool { |
| 182 | return half >= 0 |
| 183 | } |
| 184 | |
| 185 | func roundHalfEven(result *BigInt, neg bool, half int) bool { |
| 186 | if half > 0 { |
no outgoing calls
no test coverage detected
searching dependent graphs…