listchildrenΒΆ
Returns a list of nodes of a given class, matching a given name pattern. See children for more details on parameters.
The listchildren function is written as:
function listchildren (...)
local list = {}
for node in children (...) do
table.insert (list, node)
end
return list
end
Arguments:
node The node to iteratetype A class the children must belong to to be visited by the iterator or "Node" if not specifiedpattern A Lua's pattern used to check the name of the node, or a function that filter the node. See Lua's pattern documentation.recursive if true, traverse the children recursively.