@webref intlist:method @brief Multiply a value
(int index, int amount)
| 507 | * @brief Multiply a value |
| 508 | */ |
| 509 | public void mult(int index, int amount) { |
| 510 | if (index < count) { |
| 511 | data[index] *= amount; |
| 512 | } else { |
| 513 | boundsProblem(index, "mult"); |
| 514 | } |
| 515 | } |
| 516 | |
| 517 | /** |
| 518 | * @webref intlist:method |
nothing calls this directly
no test coverage detected