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

Method toStringImpl

output/java_guava/1.4.16/Maps.java:3652–3656  ·  view source on GitHub ↗

An implementation of Map#toString.

(Map<?, ?> map)

Source from the content-addressed store, hash-verified

3650 */
3651
3652 static String toStringImpl(Map<?, ?> map) {
3653 StringBuilder sb = Collections2.newStringBuilderForCollection(map.size()).append('{');
3654 STANDARD_JOINER.appendTo(sb, map);
3655 return sb.append('}').toString();
3656 }
3657
3658 /**
3659 * An implementation of {@link Map#putAll}.

Callers 2

standardToStringMethod · 0.95
toStringMethod · 0.95

Calls 5

sizeMethod · 0.65
toStringMethod · 0.65
appendMethod · 0.45
appendToMethod · 0.45

Tested by

no test coverage detected