@webref intlist:method @brief Divide a value
(int index, int amount)
| 519 | * @brief Divide a value |
| 520 | */ |
| 521 | public void div(int index, int amount) { |
| 522 | if (index < count) { |
| 523 | data[index] /= amount; |
| 524 | } else { |
| 525 | boundsProblem(index, "div"); |
| 526 | } |
| 527 | } |
| 528 | |
| 529 | |
| 530 | private void checkMinMax(String functionName) { |
nothing calls this directly
no test coverage detected