Evaluates the expression and returns the unwrapped item. @param qc query context @param ii input info (can be null; required for those Value instances that have no input info) @return item @throws QueryException query exception
(final QueryContext qc, final InputInfo ii)
| 179 | * @throws QueryException query exception |
| 180 | */ |
| 181 | public final Item unwrappedItem(final QueryContext qc, final InputInfo ii) throws QueryException { |
| 182 | return unwrappedValue(qc).item(qc, ii); |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Computes the effective boolean value for this expression. |
no test coverage detected