Module talk:table/compressSparseArray
මාතෘකාවක් එක්කරන්නපෙනුම
| oldid | date/time | username | edit summary |
|---|---|---|---|
| 84477642 | 2025-04-06T07:27:23Z | Theknightwho | Protected "[[Module:table/compressSparseArray]]": Highly visible template/module ([Edit=Allow only template editors and administrators] (indefinite) [Move=Allow only template editors and administrators] (indefinite)) |
| 84477638 | 2025-04-06T07:25:19Z | Theknightwho | Created page with "local table_num_keys_module = "Module:table/numKeys" local function num_keys(...) num_keys = require(table_num_keys_module) return num_keys(...) end --[==[ Given a list that may contain gaps (e.g. {1, 2, nil, 4}), returns a new gapless list in the same order.]==] return function(t) local list, keys, i = {}, num_keys(t), 0 while true do i = i + 1 local k = keys[i] if k == nil then return list end list[i] = t[k] end end" |
Start a discussion about Module:table/compressSparseArray
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/compressSparseArray.