table.move (a1, f, e, t [,a2])
Moves elements from table a1
to table a2
, performing the equivalent to the following multiple assignment: a2[t],··· = a1[f],···,a1[e]
. The default for a2
is a1
. The destination range can overlap with the source range. The number of elements to be moved must fit in a Lua integer.
Returns the destination table a2
.
Please login to continue.