concat
<lst>:concat(lst2)
Concatena gli elementi delle lista passata a quelli della lista corrente.
Esempio 218. Esempio concat
local a = {"a", "b", "c"}
local b = XTable(a):concat({"d", "e", "f"}, {"g", "h", "i"}):astable()
--> {"a", "b", "c", "d", "e", "f", "g", "h", "i"}