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
| 21:45 | Module:parse interface diffhist +1,555 Sware talk contribs | ||||
| N 21:38 | Module:table/getNested diffhist +700 Sware talk contribs (Created page with "local error = error local select = select --[==[ Given a table and an arbitrary number of keys, will successively access subtables using each key in turn, returning the value at the final key. For example, if {t} is { {[1] = {[2] = {[3] = "foo"}}}}, {export.getNested(t, 1, 2, 3)} will return {"foo"}. If no subtable exists for a given key value, returns nil, but will throw an error if a non-table is found at an intermediary key.]==] return function(...) local n = selec...") | ||||
| N 21:38 | Module:table/setNested diffhist +1,266 Sware talk contribs (Created page with "local error = error local select = select --[==[ Given a table, value and an arbitrary number of keys, will successively access subtables using each key in turn, and sets the value at the final key. For example, if {t} is { {} }, {export.setNested(t, "foo", 1, 2, 3)} will modify {t} to { {[1] = {[2] = {[3] = "foo"} } } }. If no subtable exists for a given key value, one will be created, but the function will throw an error if a non-table value is found at an intermedia...") | ||||
| 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)...") | ||||
| 21:21 | Module:parameter utilities diffhist +132 Sware talk contribs | ||||
|
|
17:47 | (Import log) [Sware (18×)] | |||
|
|
17:47 Sware talk contribs imported Module:title/getCurrentNamespace by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:title/redirectTarget by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:title/isTitle by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:title/newTitle by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:table/getMetamethod by file upload (1 revision) | ||||
|
|
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:Scribunto/metamethods by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:data/magic words by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:pages 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:template parser by file upload (1 revision) | ||||
|
|
17:47 Sware talk contribs imported Module:parser 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) | ||||