Module:table/listToSet: Revision history

Jump to navigation Jump to search

External tools: Page statistics • Find when text was added/removed


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 June 2024

15 September 2023

5 July 2022

  • curprev 04:1404:14, 5 July 2022 Benwing2 talk contribs 224 bytes +224 Created page with "--[[ { "a", "b", "c" } -> { ["a"] = true, ["b"] = true, ["c"] = true } --]] return function(t) -- checkType("listToSet", 1, t, "table") local set = {} for _, item in ipairs(t) do set[item] = true end return set end"