A lua library for immutable tables
Go to file
2018-02-11 13:50:00 -08:00
immutable-table-scm-1.rockspec Added rockspec. 2018-02-09 16:07:58 -08:00
LICENSE Added license 2018-02-11 13:50:00 -08:00
limmutable.c Added support for unpack() in lua 5.3, fixed a bug in tostring, and 2018-02-11 13:41:37 -08:00
Makefile Renamed 2018-02-11 13:43:42 -08:00
README.md Updated doc. 2018-02-10 00:12:18 -08:00
tests.lua Renamed 2018-02-11 13:43:42 -08:00

ImmuTable

This is a native Lua library that allows the creation of immutable tables.

Build

Lua 5.1/5.2/5.3+ or LuaJIT 2.0+ built from source code is a prerequisite. Lua can be downloaded from the lua.org downloads page, and LuaJIT can be downloaded from the LuaJIT.org downloads page.

make LUA=/path/to/lua_dir or for LuaJIT: make LUA=/path/to/luajit_dir LUASUFFIX=jit

Usage

local immutable = require "immutable"
local Vec2 = immutable({"x","y"}, {
    len2=function(self)
        return self.x*self.x + self.y*self.y
    end,
    is_a_vec2 = true,
    __add=function(self, other)
        local cls = getmetatable(self)
        return cls(self.x+other.x, self.y+other.y)
    end,
    __tostring=function(self)
        return "Vec2("..tostring(self.x)..", "..tostring(self.y)..")"
    end,
})
local v = Vec2(2, 3)
assert(v.x == 2 and v.y == 3)
local v2 = v + Vec2(0, 1)
assert(v2 == Vec2(2, 4))
local t = {[v2]='yep'}
assert(t[Vec2(2,4)] == 'yep')
assert(Vec2(2,0):len2() == 4)
assert(Vec2(2,0).is_a_vec2)