Evaluates the expression and returns the resulting, atomized item, or Empty#VALUE if the expression yields an empty sequence. @param qc query context @param ii input info (can be null; required for those Value instances that have no input info) @return item or {@link Empty#
(final QueryContext qc, final InputInfo ii)
| 116 | * @throws QueryException query exception |
| 117 | */ |
| 118 | public Item atomItem(final QueryContext qc, final InputInfo ii) throws QueryException { |
| 119 | return atomValue(qc, ii).item(qc, ii); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Evaluates the expression and returns the atomized items. |