(Transaction tr)
| 39 | public static Object get(TransactionContext tcx, final long index){ |
| 40 | return tcx.run(new Function<Transaction,Object>() { |
| 41 | public Object apply(Transaction tr){ |
| 42 | return Tuple.fromBytes(tr.get(vector.pack( |
| 43 | Tuple.from(index))).get()).get(0); |
| 44 | } |
| 45 | }); |
| 46 | } |
| 47 |