@webref doublelist:method @brief Return the smallest value
()
| 565 | * @brief Return the smallest value |
| 566 | */ |
| 567 | public double min() { |
| 568 | checkMinMax("min"); |
| 569 | int index = minIndex(); |
| 570 | return index == -1 ? Double.NaN : data[index]; |
| 571 | } |
| 572 | |
| 573 | |
| 574 | public int minIndex() { |
no test coverage detected