MCPcopy Index your code
hub / github.com/apache/groovy / plus

Method plus

src/main/java/groovy/lang/GString.java:137–139  ·  view source on GitHub ↗

Concatenates this GString with another GString. @param that the other GString @return the concatenated GString

(GString that)

Source from the content-addressed store, hash-verified

135 * @return the concatenated GString
136 */
137 public GString plus(GString that) {
138 return GStringUtil.plusImpl(values, that.values, getStrings(), that.getStrings());
139 }
140
141 /**
142 * Concatenates this GString with a String.

Callers 1

incrementMethod · 0.45

Calls 2

plusImplMethod · 0.95
getStringsMethod · 0.95

Tested by

no test coverage detected