@webref doublelist:method @brief Return the smallest value
()
| 488 | * @brief Return the smallest value |
| 489 | */ |
| 490 | public double min() { |
| 491 | checkMinMax("min"); |
| 492 | int index = minIndex(); |
| 493 | return index == -1 ? Double.NaN : data[index]; |
| 494 | } |
| 495 | |
| 496 | |
| 497 | public int minIndex() { |
no test coverage detected