MCPcopy Create free account
hub / github.com/dynjs/dynjs / joinArray

Method joinArray

src/test/java/org/dynjs/runtime/java/Thing.java:86–93  ·  view source on GitHub ↗
(Object array)

Source from the content-addressed store, hash-verified

84 }
85
86 protected String joinArray(Object array) {
87 int length = Array.getLength(array);
88 StringBuffer buffer = new StringBuffer();
89 for (int i = 0; i < length; i++) {
90 buffer.append("" + Array.get(array, i));
91 }
92 return buffer.toString();
93 }
94}

Callers 9

stringJoinerMethod · 0.95
booleanJoinerMethod · 0.95
byteJoinerMethod · 0.95
charJoinerMethod · 0.95
doubleJoinerMethod · 0.95
floatJoinerMethod · 0.95
intJoinerMethod · 0.95
longJoinerMethod · 0.95
shortJoinerMethod · 0.95

Calls 3

appendMethod · 0.80
getMethod · 0.65
toStringMethod · 0.45

Tested by

no test coverage detected