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

Method toIntArray

output/java_guava/1.4.17/Ints.java:649–655  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

647 }
648
649 int[] toIntArray() {
650 // Arrays.copyOfRange() is not available under GWT
651 int size = size();
652 int[] result = new int[size];
653 System.arraycopy(array, start, result, 0, size);
654 return result;
655 }
656
657 private static final long serialVersionUID = 0;
658 }

Callers 1

toArrayMethod · 0.45

Calls 1

sizeMethod · 0.95

Tested by

no test coverage detected