@webref floatlist:method @brief Return the smallest value
()
| 561 | * @brief Return the smallest value |
| 562 | */ |
| 563 | public float min() { |
| 564 | checkMinMax("min"); |
| 565 | int index = minIndex(); |
| 566 | return index == -1 ? Float.NaN : data[index]; |
| 567 | } |
| 568 | |
| 569 | |
| 570 | public int minIndex() { |
no test coverage detected