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

hydra.langs.scala.meta.Pat_Tuple Maven / Gradle / Ivy

package hydra.langs.scala.meta;

import java.io.Serializable;

public class Pat_Tuple implements Serializable {
  public static final hydra.core.Name NAME = new hydra.core.Name("hydra/langs/scala/meta.Pat.Tuple");
  
  public final java.util.List args;
  
  public Pat_Tuple (java.util.List args) {
    this.args = args;
  }
  
  @Override
  public boolean equals(Object other) {
    if (!(other instanceof Pat_Tuple)) {
      return false;
    }
    Pat_Tuple o = (Pat_Tuple) (other);
    return args.equals(o.args);
  }
  
  @Override
  public int hashCode() {
    return 2 * args.hashCode();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy