(a, b Counter)
| 38 | } |
| 39 | |
| 40 | func _min(a, b Counter) Counter { |
| 41 | left := a.(*big.Int) |
| 42 | right := b.(*big.Int) |
| 43 | if left.Cmp(right) == -1 { |
| 44 | return left |
| 45 | } else { |
| 46 | return right |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func _max(a, b Counter) Counter { |
| 51 | left := a.(*big.Int) |