Module talk:table/extend
මාතෘකාවක් එක්කරන්නපෙනුම
| oldid | date/time | username | edit summary |
|---|---|---|---|
| 84800604 | 2025-05-14T15:48:45Z | Theknightwho | |
| 84793923 | 2025-05-13T18:41:45Z | Theknightwho | Protected "[[Module:table/extend]]": Highly visible template/module ([Edit=Allow only template editors and administrators] (indefinite) [Move=Allow only template editors and administrators] (indefinite)) |
| 84793921 | 2025-05-13T18:41:36Z | Theknightwho | Created page with "local insert = table.insert local ipairs = ipairs local select = select --[==[ Extend an existing list by a new list, modifying the existing list in-place. Compare the Python expression {list.extend(new_items)}.]==] return function(t, ...) if select("#", ...) < 2 then for _, v in ipairs((...)) do insert(t, v) end else local pos, list = ... for _, v in ipairs(list) do insert(t, pos, v) pos = pos + 1 end end end" |
Start a discussion about Module:table/extend
Talk pages are where people discuss how to make content on Wiktionary the best that it can be. You can use this page to start a discussion with others about how to improve Module:table/extend.