
org.psjava.formula.MinInIterable 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;
import org.psjava.util.ReversedComparator;
public class MinInIterable {
public static T min(Iterable iterable, Comparator comp) {
return MaxInIterable.max(iterable, ReversedComparator.wrap(comp));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy