Capil ka isi

Modul:table/invert

Matan Wiktionary

Dokumentasi untuk modul ini dapat dibuat di Modul:table/invert/doc

-- Imported from enwiktionary
-- Source: https://en.wiktionary.org/wiki/Module:table/invert
-- License: CC BY-SA

local pairs = pairs

--[==[
Invert a table. For example, {invert({ "a", "b", "c" })} -> { { a = 1, b = 2, c = 3 }}]==]
return function(t)
	local map = {}
	for k, v in pairs(t) do
		map[v] = k
	end
	return map
end