├── .gitignore ├── LICENSE ├── README.md ├── changelog.md ├── logo ├── editablefile.ai ├── horizontal.png ├── horizontal.svg ├── logomark.png ├── logomark.svg ├── vertical.png └── vertical.svg ├── rockspecs └── luatable-scm-1.rockspec └── src └── luatable.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/changelog.md -------------------------------------------------------------------------------- /logo/editablefile.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/logo/editablefile.ai -------------------------------------------------------------------------------- /logo/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/logo/horizontal.png -------------------------------------------------------------------------------- /logo/horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/logo/horizontal.svg -------------------------------------------------------------------------------- /logo/logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/logo/logomark.png -------------------------------------------------------------------------------- /logo/logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/logo/logomark.svg -------------------------------------------------------------------------------- /logo/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/logo/vertical.png -------------------------------------------------------------------------------- /logo/vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/logo/vertical.svg -------------------------------------------------------------------------------- /rockspecs/luatable-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/rockspecs/luatable-scm-1.rockspec -------------------------------------------------------------------------------- /src/luatable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca96/lua-table/HEAD/src/luatable.lua --------------------------------------------------------------------------------