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

Method toString

corpus/java/training/guava/collect/Range.java:642–645  ·  view source on GitHub ↗

Returns a string representation of this range, such as "[3..5)" (other examples are listed in the class documentation).

()

Source from the content-addressed store, hash-verified

640 * listed in the class documentation).
641 */
642 @Override
643 public String toString() {
644 return toString(lowerBound, upperBound);
645 }
646
647 private static String toString(Cut<?> lowerBound, Cut<?> upperBound) {
648 StringBuilder sb = new StringBuilder(16);

Callers 1

RangeMethod · 0.95

Calls 4

toStringMethod · 0.65
describeAsLowerBoundMethod · 0.45
appendMethod · 0.45
describeAsUpperBoundMethod · 0.45

Tested by

no test coverage detected