MCPcopy Create free account
hub / github.com/antlr/codebuff / longsToDoubles

Method longsToDoubles

output/java_guava/1.4.17/Quantiles.java:510–517  ·  view source on GitHub ↗
(long[] longs)

Source from the content-addressed store, hash-verified

508 }
509
510 private static double[] longsToDoubles(long[] longs) {
511 int len = longs.length;
512 double[] doubles = new double[len];
513 for (int i = 0; i < len; i++) {
514 doubles[i] = longs[i];
515 }
516 return doubles;
517 }
518
519 private static double[] intsToDoubles(int[] ints) {
520 int len = ints.length;

Callers 2

computeMethod · 0.45
computeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected