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

org.basex.query.func.array.ArrayFoldLeft Maven / Gradle / Ivy

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

import org.basex.query.*;
import org.basex.query.expr.*;
import org.basex.query.func.fn.*;
import org.basex.query.value.*;
import org.basex.query.value.array.*;
import org.basex.query.value.item.*;

/**
 * Function implementation.
 *
 * @author BaseX Team 2005-22, BSD License
 * @author Christian Gruen
 */
public final class ArrayFoldLeft extends ArrayFn {
  @Override
  public Value value(final QueryContext qc) throws QueryException {
    final XQArray array = toArray(exprs[0], qc);
    Value result = exprs[1].value(qc);
    final FItem func = toFunction(exprs[2], 2, qc);

    for(final Value value : array.members()) result = func.invoke(qc, info, result, value);
    return result;
  }

  @Override
  protected Expr opt(final CompileContext cc) throws QueryException {
    final Expr expr1 = exprs[0], expr2 = exprs[1];
    if(expr1 == XQArray.empty()) return expr2;

    FnFoldLeft.opt(this, cc, true, true);
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy