org.psjava.formula.Min Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of psjava Show documentation
Show all versions of psjava Show documentation
Problem Solving Library for Java
package org.psjava.formula;
import java.util.Comparator;
public class Min {
public static T min(T v1, T v2, Comparator comp) {
if(comp.compare(v1, v2) < 0)
return v1;
else
return v2;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy