Module:Core: Revision history

Jump to navigation Jump to search

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.

    27 March 2025

    • curprev 14:2914:29, 27 March 2025Draculea8302 talk contribs 15,884 bytes +15,884 Created page with " local Utils = {} -- * Function functions :V function Utils.id(...) return ... end function Utils.second(_, x) return x end -- * Number functions. function Utils.round(x) return math.floor(x + 0.5) end function Utils.divMod(x, y) return math.floor(x / y), x % y end -- * Collection functions. function Utils.isize(xs) local r = 0 for _ in ipairs(xs) do r = r + 1 end return r end function Utils.size(xs) local r = 0 for _ in pairs(xs) do r = r + 1..."