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

Method toString

output/java_guava/1.4.18/Chars.java:585–593  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

583 }
584
585 @Override
586 public String toString() {
587 StringBuilder builder = new StringBuilder(size() * 3);
588 builder.append('[').append(array[start]);
589 for (int i = start + 1; i < end; i++) {
590 builder.append(", ").append(array[i]);
591 }
592 return builder.append(']').toString();
593 }
594
595 char[] toCharArray() {
596 // 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