tuple_object:totable()
- 
object tuple_object¶
- 
 tuple_object:totable([start-field-number[, end-field-number]])¶
- If - tis a tuple instance,- t:totable()will return all fields,- t:totable(1)will return all fields starting with field number 1,- t:totable(1,5)will return all fields between field number 1 and field number 5.- It is preferable to use - t:totable()rather than- t:unpack().- Return: - field(s) from the tuple - Rtype: - lua-table - In the following example, a tuple named - tis created, then all its fields are selected, then the result is returned.- tarantool> t = box.tuple.new{'Fld#1', 'Fld#2', 'Fld#3', 'Fld#4', 'Fld#5'} --- ... tarantool> t:totable() --- - ['Fld#1', 'Fld#2', 'Fld#3', 'Fld#4', 'Fld#5'] ... 
 
-