Module:MapUtil: Revision history

From Space Station 14 Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

19 May 2025

18 February 2024

  • curprev 11:2611:26, 18 February 2024 support-wikigg>RheingoldRiver 4,270 bytes +4,270 Created page with "local util_table = require("Module:TableUtil") local util_text = require("Module:TextUtil") local h = {} local p = {} function p.inPlace(tbl, f, ...) for k, v in pairs(tbl) do tbl[k] = f(v, ...) end return tbl end function p.apply(tbl, f, ...) for k, v in pairs(tbl) do f(v, ...) end return tbl end function p.arrayApply(tbl, f, ...) for k, v in ipairs(tbl) do f(v, ...) end return tbl end function p.multiParamSafe(tbl, f, ...) if not tbl or #tbl == 0..."