All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Lifecraft Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:29, 27 March 2025 Draculea8302 talk contribs created page Module:Core (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...")