Module talk:table/find
මාතෘකාවක් එක්කරන්නපෙනුම
| oldid | date/time | username | edit summary |
|---|---|---|---|
| 84497776 | 2025-04-07T14:37:50Z | Theknightwho | Consolidate code. |
| 84463592 | 2025-04-04T12:09:51Z | Theknightwho | |
| 84459842 | 2025-04-04T05:02:02Z | Theknightwho | |
| 84459050 | 2025-04-04T02:28:51Z | Theknightwho | |
| 84458832 | 2025-04-04T01:57:56Z | Theknightwho | Protected "[[Module:table/find]]": Highly visible template/module ([Edit=Allow only template editors and administrators] (indefinite) [Move=Allow only template editors and administrators] (indefinite)) |
| 84458830 | 2025-04-04T01:57:18Z | Theknightwho | Created page with "local deep_equals -- Use `key_func` to get the comparison keys, and compare with `comp_func`. local function find_with_key_func(list, x, key_func, comp_func) x = key_func(x) local i = 0 while true do i = i + 1 local v = list[i] if v == nil then return nil end v = key_func(v) if comp_func(v, x) then return i end end end -- Use the raw values as comparison keys, and compare with `comp_func`. local function find_without_key_func(list, x, comp_func)..." |
Start a discussion about Module:table/find
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/find.