Create a tuple from a provided list of objects, keeping the provided list. The new tuple will take over ownership of the provided list. @param list List of objects that will become the fields of the tuple. @return A tuple with the list objects as its fields
(List list)
| 129 | * @return A tuple with the list objects as its fields |
| 130 | */ |
| 131 | public abstract Tuple newTupleNoCopy(List list); |
| 132 | |
| 133 | /** |
| 134 | * Create a tuple with a single element. This is useful because of |
no outgoing calls