mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
Starbeamrainbowlabs
1f44e240fb
..it was getting rather long, because Lua doesn't exactly come with batteries included :-/
20 lines
1.3 KiB
Lua
20 lines
1.3 KiB
Lua
-- ████████ █████ ██████ ██ ███████ ███████
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ██ ███████ ██████ ██ █████ ███████
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ██ ██ ██ ██████ ███████ ███████ ███████
|
|
|
|
-- Functions that operate on tables.
|
|
-- Lua doesn't exactly come with batteries included, so this is quite an
|
|
-- extensive collection of functions :P
|
|
|
|
-- TODO: Refactor into its own worldeditadditions.tables namespace.
|
|
|
|
dofile(worldeditadditions.modpath.."/utils/tables/shallowcopy.lua")
|
|
dofile(worldeditadditions.modpath.."/utils/tables/table_apply.lua")
|
|
dofile(worldeditadditions.modpath.."/utils/tables/table_unpack.lua")
|
|
dofile(worldeditadditions.modpath.."/utils/tables/table_get_last.lua")
|
|
dofile(worldeditadditions.modpath.."/utils/tables/table_tostring.lua")
|
|
dofile(worldeditadditions.modpath.."/utils/tables/table_map.lua")
|
|
dofile(worldeditadditions.modpath.."/utils/tables/table_filter.lua")
|
|
dofile(worldeditadditions.modpath.."/utils/tables/table_unique.lua")
|