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

Method toString

output/java_guava/1.4.17/Floats.java:569–577  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

567 }
568
569 @Override
570 public String toString() {
571 StringBuilder builder = new StringBuilder(size() * 12);
572 builder.append('[').append(array[start]);
573 for (int i = start + 1; i < end; i++) {
574 builder.append(", ").append(array[i]);
575 }
576 return builder.append(']').toString();
577 }
578
579 float[] toFloatArray() {
580 // 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