Suppose I have a FileTree and two patterns: *.in for input files and *.out for output files. Usually, in the same folder, there will be two files: a *.in paired with a *.out. How can I match them at once in mapsubtrees? Like the following syntax:
mapsubtrees(tree, ("*.in", "*.out")) do (subtree1, subtree2)
path(subtree1) => path(subtree2)
end