Divide a value. @webref intlist:method @webBrief Divide a value
(int index, int amount)
| 476 | * @webBrief Divide a value |
| 477 | */ |
| 478 | public void div(int index, int amount) { |
| 479 | if (index < count) { |
| 480 | data[index] /= amount; |
| 481 | } else { |
| 482 | boundsProblem(index, "div"); |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | |
| 487 | private void checkMinMax(String functionName) { |
nothing calls this directly
no test coverage detected