Choice item types: optimizations
```xquery
for $c in characters('abcdef')
return element { $c } {} instance of (element(a)|element(a))
```
…could be simplified to…
```xquery
for $c in characters('abcdef')
return element { $c } {} instance of element(a)
```
0 条评论