@webref doublelist:method @brief Return the largest value
()
| 601 | * @brief Return the largest value |
| 602 | */ |
| 603 | public double max() { |
| 604 | checkMinMax("max"); |
| 605 | int index = maxIndex(); |
| 606 | return index == -1 ? Double.NaN : data[index]; |
| 607 | } |
| 608 | |
| 609 | |
| 610 | public int maxIndex() { |
nothing calls this directly
no test coverage detected