MCPcopy Create free account
hub / github.com/apple/foundationdb / tupleRep

Method tupleRep

recipes/java-recipes/MicroSpatialTest.java:108–117  ·  view source on GitHub ↗
(Tuple t)

Source from the content-addressed store, hash-verified

106 }
107
108 private static String tupleRep(Tuple t){
109 StringBuilder sb = new StringBuilder();
110 sb.append('(');
111 for(Object o : t){
112 sb.append(o.toString());
113 sb.append(',');
114 }
115 sb.append(')');
116 return sb.toString();
117 }
118
119 public static void printSubspace(TransactionContext tcx, final Subspace s){
120 tcx.run(new Function<Transaction,Void>() {

Callers 1

applyMethod · 0.95

Calls 2

appendMethod · 0.45
toStringMethod · 0.45

Tested by

no test coverage detected