Multiply a value. @webref intlist:method @webBrief Multiply a value
(int index, int amount)
| 462 | * @webBrief Multiply a value |
| 463 | */ |
| 464 | public void mult(int index, int amount) { |
| 465 | if (index < count) { |
| 466 | data[index] *= amount; |
| 467 | } else { |
| 468 | boundsProblem(index, "mult"); |
| 469 | } |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * Divide a value. |
nothing calls this directly
no test coverage detected