@webref doublelist:method @brief Return the largest value
()
| 524 | * @brief Return the largest value |
| 525 | */ |
| 526 | public double max() { |
| 527 | checkMinMax("max"); |
| 528 | int index = maxIndex(); |
| 529 | return index == -1 ? Double.NaN : data[index]; |
| 530 | } |
| 531 | |
| 532 | |
| 533 | public int maxIndex() { |
nothing calls this directly
no test coverage detected