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

Method toString

output/java_guava/1.4.18/Ints.java:639–647  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

637 }
638
639 @Override
640 public String toString() {
641 StringBuilder builder = new StringBuilder(size() * 5);
642 builder.append('[').append(array[start]);
643 for (int i = start + 1; i < end; i++) {
644 builder.append(", ").append(array[i]);
645 }
646 return builder.append(']').toString();
647 }
648
649 int[] toIntArray() {
650 // Arrays.copyOfRange() is not available under GWT

Callers

nothing calls this directly

Calls 3

sizeMethod · 0.95
toStringMethod · 0.65
appendMethod · 0.45

Tested by

no test coverage detected