()
| 13 | Arrays.parallelSetAll(ia, new Rand.Pint()::get); |
| 14 | } |
| 15 | static void longArray() { |
| 16 | long[] la = new long[SIZE]; |
| 17 | Arrays.setAll(la, new Rand.Plong()::get); |
| 18 | Arrays.parallelSetAll(la, new Rand.Plong()::get); |
| 19 | } |
| 20 | public static void main(String[] args) { |
| 21 | intArray(); |
| 22 | longArray(); |
no test coverage detected