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

water.rapids.ASTRow Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
package water.rapids;

/** A Row.  Execution is just to return the constant. */
public class ASTRow extends AST {
  final ValRow _row;
  public ASTRow(double[] ds, String[] names) { _row = new ValRow(ds,names); }
  @Override public String str() { return _row.toString(); }
  @Override public ValRow exec(Env env) { return _row; }
  @Override int nargs() { return 1; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy