Hi all,
I am now using functions as argument in BaseX for the first time, borrowing the way to do that from some old list archive contribution. Apparently you have to use the name of the function followed by #1 like this:
let $a := local:someFunc($nodeSet, local:someOtherFunc#1)
But it is unclear to me if this is indeed the right way to do it. The #1 suggests that there may also be a #2, #3 etc. (and possibly a #0). I could not find the documentation on using functions as argument on the Wiki pages. (I am happy to see that it works as expected though)
Paul