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

water.util.Triple Maven / Gradle / Ivy

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

/** Pair class with a clearer name than AbstractMap.SimpleEntry. */
public class Triple {
  public V v1;
  public V v2;
  public V v3;
  public Triple(V v1, V v2, V v3) { this.v1=v1; this.v2=v2; this.v3=v3; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy