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

Method toString

output/java_guava/1.4.19/Longs.java:724–732  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

722 }
723
724 @Override
725 public String toString() {
726 StringBuilder builder = new StringBuilder(size() * 10);
727 builder.append('[').append(array[start]);
728 for (int i = start + 1; i < end; i++) {
729 builder.append(", ").append(array[i]);
730 }
731 return builder.append(']').toString();
732 }
733
734 long[] toLongArray() {
735 // 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