table.unpack vs table.move
Published onWhich is faster: table.unpack
or table.move?
table.unpack
is going to be dumping potentially tons of values onto the stack,
while table.move
can avoid the stack entirely.
Which is faster: table.unpack
or table.move?
table.unpack
is going to be dumping potentially tons of values onto the stack,
while table.move
can avoid the stack entirely.