(String[] args)
| 8 | |
| 9 | public class SelectElement { |
| 10 | public static void main(String[] args) { |
| 11 | System.out.println(rands().findFirst().getAsInt()); |
| 12 | System.out.println( |
| 13 | rands().parallel().findFirst().getAsInt()); |
| 14 | System.out.println(rands().findAny().getAsInt()); |
| 15 | System.out.println( |
| 16 | rands().parallel().findAny().getAsInt()); |
| 17 | } |
| 18 | } |
| 19 | /* Output: |
| 20 | 258 |