Michael Kay
Michael Kay
But that example simply selects the Nth member of a sequence that already exists, which surely defeats the point? That seems to be something we can already do trivially. As...
The proposal has come on a long way since I last reviewed it, but there is still a great deal of work to be done. First and foremost: - There...
The question is, should we allow any expression that does not cause a parsing ambiguity, or should we allow only a small set of expressions that are very commonly needed?...
Another candidate is a `QNameLiteral`. In fact, allowing any `Literal` would simplify the grammar rather than complicating it. The main objection is that `array:get()` requires an integer, and doesn't allow...
I think the reason that `[ 'a' ]?(1e0)` fails is that it is equivalent to `array:get(['a'], 1e0)` which fails because you can't supply a double where an integer is expected....
See also #2177
I'm not quite sure I understand what you mean by "loading-parameters". Note that an application can call load-xquery-module twice using different values for the external variables (global parameters) declared in...
We wouldn't want to do anything that makes the result dependent on the order of execution.
>Being able to retrieve a module's functions and variables by means of a single variable referencing to an "loaded-module-instance" I don't see how that differs from the current specification.