(a, b int)
| 453 | } |
| 454 | |
| 455 | func max(a, b int) int { |
| 456 | if a > b { |
| 457 | return a |
| 458 | } |
| 459 | return b |
| 460 | } |
| 461 | |
| 462 | // formatBits computes the string representation of u in the given base. |
| 463 | // If neg is set, u is treated as negative int64 value. |
no outgoing calls
no test coverage detected