Returns the lowest value in the dataset. The count must be non-zero. <h3>Non-finite values</h3> <p>If the dataset contains {@link Double#NaN} then the result is {@link Double#NaN}. If it contains {@link Double#NEGATIVE_INFINITY} and not {@link Double#NaN} then the result is {@link Double#NEGATIVE_
()
| 378 | * @throws IllegalStateException if the dataset is empty |
| 379 | */ |
| 380 | public double min() { |
| 381 | checkState(count != 0); |
| 382 | return min; |
| 383 | } |
| 384 | |
| 385 | /** |
| 386 | * Returns the highest value in the dataset. The count must be non-zero. |