Logo

Programming-Idioms

History of Idiom 44 > diff from v26 to v27

Edit summary for version 27 by :
New Lua implementation by user [Nepta]

Version 26

2016-02-18, 16:57:59

Version 27

2016-04-07, 14:26:44

Idiom #44 Insert element in list

Insert element x at position i in list s. Further elements must be shifted to the right.

Idiom #44 Insert element in list

Insert element x at position i in list s. Further elements must be shifted to the right.

Code
table.insert(s,i,x)
Doc URL
http://www.lua.org/manual/5.3/manual.html#pdf-table.insert
Demo URL
http://codepad.org/5w098fMZ