Module:FunList/EnumerableExtensions: Revision history

From Melvor Idle

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.

26 July 2024

  • curprev 20:0320:03, 26 July 2024Ricewind talk contribs 12,136 bytes +30 No edit summary
  • curprev 19:4519:45, 26 July 2024Ricewind talk contribs 12,106 bytes +1,527 No edit summary
  • curprev 19:3819:38, 26 July 2024Ricewind talk contribs 10,579 bytes +10,579 Created page with "local Enumerable = require('Module:Enumerable') local Iterators = require('Module:Iterators') -- Helper function to check if objects are equal. local function isEqual(obj1, obj2) local type1 = type(obj1) local type2 = type(obj2) if type1 ~= type2 then return false end if type1 == "number" or type1 == "string" or type1 == "boolean" then return obj1 == obj2 elseif type1 == "table" then if #obj1 ~= #obj2 then retur..."