Module talk:table/sparseIpairs
මාතෘකාවක් එක්කරන්නපෙනුම
| oldid | date/time | username | edit summary |
|---|---|---|---|
| 84477648 | 2025-04-06T07:31:07Z | Theknightwho | Protected "[[Module:table/sparseIpairs]]": Highly visible template/module ([Edit=Allow only template editors and administrators] (indefinite) [Move=Allow only template editors and administrators] (indefinite)) |
| 84477647 | 2025-04-06T07:30:58Z | 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 --[==[ An iterator which works like `ipairs`, but which works for sparse arrays.]==] return function(t) local keys, i = num_keys(t), 0 return function() i = i + 1 local k = keys[i] if k ~= nil then return k, t[k] end end end" |
Start a discussion about Module:table/sparseIpairs
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/sparseIpairs.