Concatenates this GString with another GString. @param that the other GString @return the concatenated GString
(GString that)
| 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. |
no test coverage detected