org.basex.query.func.fn.FnIdref Maven / Gradle / Ivy
package org.basex.query.func.fn;
import org.basex.query.*;
import org.basex.query.value.*;
/**
* Function implementation.
*
* @author BaseX Team 2005-22, BSD License
* @author Christian Gruen
*/
public final class FnIdref extends Ids {
@Override
public Value value(final QueryContext qc) throws QueryException {
return ids(qc, true);
}
}