(List<Long> list)
| 3892 | } |
| 3893 | |
| 3894 | static long[] toLongArray(List<Long> list) { |
| 3895 | long[] result = new long[list.size()]; |
| 3896 | for (int i = 0; i < list.size(); i++) |
| 3897 | result[i] = list.get(i); |
| 3898 | return result; |
| 3899 | } |
| 3900 | |
| 3901 | static List<Long> fromLongArray(long[] array) { |
| 3902 | List<Long> result = new ArrayList<>(); |
no test coverage detected