(int n)
| 200 | return trim(r.nextDouble()); |
| 201 | } |
| 202 | public double get(int n) { |
| 203 | return getAsDouble(); |
| 204 | } |
| 205 | public double[] array(int sz) { |
| 206 | double[] result = r.doubles(sz).toArray(); |
| 207 | Arrays.setAll(result, |
nothing calls this directly
no test coverage detected