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

Method appendTo

corpus/java/training/guava/base/Joiner.java:93–96  ·  view source on GitHub ↗

Appends the string representation of each of parts, using the previously configured separator between each, to appendable.

(A appendable, Iterable<?> parts)

Source from the content-addressed store, hash-verified

91 * separator between each, to {@code appendable}.
92 */
93 @CanIgnoreReturnValue
94 public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts) throws IOException {
95 return appendTo(appendable, parts.iterator());
96 }
97
98 /**
99 * Appends the string representation of each of {@code parts}, using the previously configured

Callers 6

joinMethod · 0.95
toStringImplMethod · 0.45
toStringMethod · 0.45
toStringImplMethod · 0.45
toStringMethod · 0.45
computeToStringMethod · 0.45

Calls 9

toStringMethod · 0.95
iterableMethod · 0.95
iteratorMethod · 0.65
nextMethod · 0.65
toStringMethod · 0.65
checkNotNullMethod · 0.45
hasNextMethod · 0.45
appendMethod · 0.45
asListMethod · 0.45

Tested by

no test coverage detected