We're back! Sorry, bad combo of sickness, funeral and a month-long trip abroad. The site is back now. |
Related changes
Jump to navigation
Jump to search
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
Show changes on pages linked from
Pages linked from the selected page
Pages linking to the selected page
CollapseList of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
4 November 2025
| N 21:37 | Module:table/shallowCopy diffhist +584 Sware talk contribs (Created page with "local next = next local pairs = pairs local type = type --[==[ Returns a clone of an object. If the object is a table, the value returned is a new table, but all subtables and functions are shared. Metamethods are respected unless the `raw` flag is set, but the returned table will have no metatable of its own.]==] return function(orig, raw) if type(orig) ~= "table" then return orig end local copy, iter, state, init = {} if raw then iter, state = next, orig else...") | ||||
| N 21:29 | Module:table/numKeys diffhist +638 Sware talk contribs (Created page with "local math_module = "Module:math" local pairs = pairs local sort = table.sort local function is_positive_integer(...) is_positive_integer = require(math_module).is_positive_integer return is_positive_integer(...) end --[==[ Given a table, return an array containing all positive integer keys, sorted either in numerical order, or using a custom `keySort` function.]==] return function(t, keySort) local nums, i = {}, 0 for k in pairs(t) do if is_positive_integer(k)...") | ||||
|
|
17:47 | (Import log) [Sware (8×)] | |||
|
|
17:47 Sware talk contribs imported Module:memoize by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:Scribunto by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:table/getUnprotectedMetatable by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:load by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:parameters by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:fun by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:table by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:string utilities by file upload (1 revision) | ||||