ITADN

Choice item types: optimizations

#2598OpenChristianGruen 创建于 2026-02-17
C
ChristianGruencommented
```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 条评论