@webref floatlist:method @brief Return the largest value
()
| 597 | * @brief Return the largest value |
| 598 | */ |
| 599 | public float max() { |
| 600 | checkMinMax("max"); |
| 601 | int index = maxIndex(); |
| 602 | return index == -1 ? Float.NaN : data[index]; |
| 603 | } |
| 604 | |
| 605 | |
| 606 | public int maxIndex() { |
nothing calls this directly
no test coverage detected