MCPcopy Create free account
hub / github.com/1345414527/MIT6.830 / listToString

Method listToString

src/java/simpledb/common/Utility.java:155–162  ·  view source on GitHub ↗
(List<Integer> list)

Source from the content-addressed store, hash-verified

153 }
154
155 public static String listToString(List<Integer> list) {
156 StringBuilder out = new StringBuilder();
157 for (Integer i : list) {
158 if (out.length() > 0) out.append("\t");
159 out.append(i);
160 }
161 return out.toString();
162 }
163}
164

Callers 3

matchTuplesMethod · 0.95
convertMethod · 0.95
convertMethod · 0.95

Calls 1

toStringMethod · 0.65

Tested by 1

matchTuplesMethod · 0.76