πTable
Auxiliary functions for Table types.
GetAUIList
Name
Type
Description
local Test = aui.switch({"A", "B"}, "C", false, "", function(group)
return {
Test2 = aui.switch({"D", "E"}, "F", false)
};
end);
print(MTools.Table.GetAUIList(Test[1])[1]);
-- Will return the word Test2.Find
Name
Type
Description
local arr = {"Test", "Test2", "Test3"};
print(MTools.Table.Find(arr, "Test2"));
-- Returns the number 2.Last updated