Returns the minimum element of this stream according to natural order. @return an Optional describing the minimum element, or empty if this stream is empty
()
| 428 | * @return an Optional describing the minimum element, or empty if this stream is empty |
| 429 | */ |
| 430 | public Optional min() { |
| 431 | return compare(false); |
| 432 | } |
| 433 | |
| 434 | |
| 435 | /** |