(Tuple t, T[] b)
| 202 | } |
| 203 | |
| 204 | static public <T>void addToTuple(Tuple t, T[] b) |
| 205 | { |
| 206 | for(int i = 0; i < b.length; i++) |
| 207 | t.append(b[i]); |
| 208 | } |
| 209 | |
| 210 | static public Tuple buildTuple(Object... args) throws ExecException { |
| 211 | return TupleFactory.getInstance().newTupleNoCopy(Lists.newArrayList(args)); |