Module talk:table/isSubsetList
මාතෘකාවක් එක්කරන්නපෙනුම
| oldid | date/time | username | edit summary |
|---|---|---|---|
| 84793859 | 2025-05-13T18:18:25Z | Theknightwho | |
| 84501971 | 2025-04-08T02:08:16Z | Theknightwho | Protected "[[Module:table/isSubsetList]]": Highly visible template/module ([Edit=Allow only template editors and administrators] (indefinite) [Move=Allow only template editors and administrators] (indefinite)) |
| 84501968 | 2025-04-08T02:08:06Z | Theknightwho | Created page with "local table_list_to_set_module = "Module:table/listToSet" local function list_to_set(...) list_to_set = require(table_list_to_set_module) return list_to_set(...) end --[==[ Returns true if the first list, taken as a set, is a subset of the second list, taken as a set.]==] return function(t1, t2) t2 = list_to_set(t2) local i = 0 while true do i = i + 1 local v = t1[i] if v == nil then return true elseif t2[v] == nil then return false end end end" |
Start a discussion about Module:table/isSubsetList
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/isSubsetList.