Increment increases `*n1` by `n2`, capped at math.MaxUint32.
(n2 Count32)
| 34 | |
| 35 | // Increment increases `*n1` by `n2`, capped at math.MaxUint32. |
| 36 | func (n1 *Count32) Increment(n2 Count32) { |
| 37 | *n1 = n1.Plus(n2) |
| 38 | } |
| 39 | |
| 40 | // AdjustMaxIfNecessary adjusts `*n1` to be `max(*n1, n2)`. Return |
| 41 | // true iff `n2` was greater than `*n1`. |