- Recon Mission
This commit is contained in:
Frank
2021-08-06 23:16:48 +02:00
parent ed402e2f5f
commit 629c5e7739
5 changed files with 172 additions and 7 deletions

View File

@@ -265,6 +265,18 @@ do -- SET_BASE
end
--- Sort the set by name.
-- @param #SET_BASE self
-- @return Core.Base#BASE The added BASE Object.
function SET_BASE:SortByName()
local function sort(a, b)
return a<b
end
table.sort(self.Index)
end
--- Get the *union* of two sets.
-- @param #SET_BASE self