All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.basex.query.func.fn.FnUnordered Maven / Gradle / Ivy

There is a newer version: 11.3
Show newest version
package org.basex.query.func.fn;

import org.basex.query.*;
import org.basex.query.expr.*;
import org.basex.query.func.*;
import org.basex.query.value.*;

/**
 * Function implementation.
 *
 * @author BaseX Team 2005-22, BSD License
 * @author Christian Gruen
 */
public final class FnUnordered extends StandardFunc {
  @Override
  public Value value(final QueryContext qc) throws QueryException {
    // implementation for dynamic function lookup
    return exprs[0].value(qc);
  }

  @Override
  protected Expr opt(final CompileContext cc) {
    return exprs[0];
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy